forked from rejetto/hfs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runscriptDlg.dfm
63 lines (63 loc) · 1.28 KB
/
runscriptDlg.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
object runScriptFrm: TrunScriptFrm
Left = 0
Top = 0
Caption = 'Run script'
ClientHeight = 312
ClientWidth = 544
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object resultBox: TMemo
Left = 0
Top = 41
Width = 544
Height = 271
Align = alClient
Lines.Strings = (
'Write your script in the external editor, then click Run.'
'In this box will see the result of the script you run.')
TabOrder = 0
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 544
Height = 41
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object sizeLbl: TLabel
Left = 503
Top = 24
Width = 32
Height = 13
Alignment = taRightJustify
Caption = 'Size: 0'
end
object runBtn: TButton
Left = 16
Top = 10
Width = 75
Height = 25
Caption = '&Run'
TabOrder = 0
OnClick = runBtnClick
end
object autorunChk: TCheckBox
Left = 104
Top = 16
Width = 169
Height = 17
Caption = '&Auto run at every saving'
Checked = True
State = cbChecked
TabOrder = 1
end
end
end