-
Notifications
You must be signed in to change notification settings - Fork 20
/
FindDlg.dfm
60 lines (60 loc) · 1.09 KB
/
FindDlg.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
object FindDlg: TFFindDlg
Left = 487
Top = 325
BorderStyle = bsToolWindow
Caption = 'Find'
ClientHeight = 96
ClientWidth = 384
Color = clBtnFace
ParentFont = True
OldCreateOrder = True
Position = poScreenCenter
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 8
Top = 8
Width = 345
Height = 49
Shape = bsFrame
end
object Label1: TLabel
Left = 24
Top = 24
Width = 60
Height = 13
Caption = 'Text to find:'
end
object OKBtn: TButton
Left = 115
Top = 68
Width = 75
Height = 25
Cursor = crHandPoint
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelBtn: TButton
Left = 195
Top = 68
Width = 75
Height = 25
Cursor = crHandPoint
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object cbText: TComboBox
Left = 88
Top = 20
Width = 249
Height = 21
ItemHeight = 13
TabOrder = 2
OnEnter = cbTextEnter
end
end