-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSearchForm.dfm
82 lines (82 loc) · 1.57 KB
/
SearchForm.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
object SearchForm1: TSearchForm1
Left = 199
Top = 142
BorderStyle = bsToolWindow
Caption = 'ARSSE - Finder'
ClientHeight = 83
ClientWidth = 319
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 5
Top = 5
Width = 23
Height = 13
Caption = '&Find:'
end
object Input: TEdit
Left = 35
Top = 3
Width = 281
Height = 21
TabOrder = 0
OnChange = InputChange
OnKeyDown = InputKeyDown
end
object MatchCase: TCheckBox
Left = 232
Top = 32
Width = 81
Height = 17
Caption = 'Match &case'
TabOrder = 1
end
object WrapAround: TCheckBox
Left = 136
Top = 32
Width = 89
Height = 17
Caption = 'Wrap around'
TabOrder = 2
end
object Previous: TButton
Left = 160
Top = 56
Width = 75
Height = 25
Caption = '&Previous'
Enabled = False
TabOrder = 4
end
object Last1000: TCheckBox
Left = 32
Top = 32
Width = 97
Height = 17
Caption = 'Last 1000 only'
Checked = True
State = cbChecked
TabOrder = 5
end
object Next: TButton
Left = 240
Top = 56
Width = 75
Height = 25
Caption = '&Next'
TabOrder = 3
OnClick = NextClick
end
end