-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFndFile.dfm
116 lines (116 loc) · 2.05 KB
/
FndFile.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
object FormFndFile: TFormFndFile
Left = 607
Top = 443
BorderStyle = bsDialog
Caption = 'File Location'
ClientHeight = 169
ClientWidth = 409
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 59
Width = 57
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'Description'
end
object Label2: TLabel
Left = 16
Top = 83
Width = 57
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'Path'
end
object Label3: TLabel
Left = 16
Top = 107
Width = 57
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'File Name'
end
object lblMessage: TLabel
Left = 16
Top = 16
Width = 377
Height = 33
AutoSize = False
WordWrap = True
end
object EditDescription: TEdit
Left = 78
Top = 56
Width = 315
Height = 21
TabOrder = 0
end
object EditPath: TEdit
Left = 78
Top = 80
Width = 315
Height = 21
TabOrder = 1
end
object EditFileName: TEdit
Left = 78
Top = 104
Width = 315
Height = 21
TabOrder = 2
end
object cmdOK: TButton
Left = 238
Top = 130
Width = 75
Height = 23
Caption = 'OK'
Default = True
TabOrder = 4
OnClick = cmdOKClick
end
object cmdCancel: TButton
Left = 318
Top = 130
Width = 75
Height = 23
Cancel = True
Caption = 'Cancel'
TabOrder = 5
OnClick = cmdCancelClick
end
object cmdBrowse: TButton
Left = 78
Top = 130
Width = 75
Height = 23
Caption = 'Browse...'
TabOrder = 3
OnClick = cmdBrowseClick
end
object cmdFindIt: TButton
Left = 158
Top = 130
Width = 75
Height = 23
Caption = 'Find It!'
TabOrder = 6
OnClick = cmdFindItClick
end
object OpenDialog1: TOpenDialog
Left = 360
Top = 48
end
end