1object SearchProgressForm: TSearchProgressForm
2  Left = 384
3  Height = 167
4  Top = 387
5  Width = 700
6  BorderIcons = [biSystemMenu, biMinimize]
7  Caption = 'Searching....'
8  ClientHeight = 167
9  ClientWidth = 700
10  Constraints.MinWidth = 700
11  OnClose = FormClose
12  OnCreate = SearchFormCREATE
13  OnDestroy = SearchFormDESTROY
14  OnShow = FormShow
15  Position = poScreenCenter
16  LCLVersion = '1.7'
17  Visible = True
18  object Panel2: TPanel
19    Left = 0
20    Height = 167
21    Top = 0
22    Width = 700
23    Align = alClient
24    BevelOuter = bvNone
25    ClientHeight = 167
26    ClientWidth = 700
27    FullRepaint = False
28    TabOrder = 0
29    object lblMatches: TLabel
30      AnchorSideTop.Control = MatchesLabel
31      AnchorSideTop.Side = asrCenter
32      Left = 121
33      Height = 1
34      Top = 99
35      Width = 1
36      ParentColor = False
37      ShowAccelChar = False
38    end
39    object MatchesLabel: TLabel
40      AnchorSideTop.Control = SearchingLabel
41      AnchorSideTop.Side = asrBottom
42      Left = 16
43      Height = 18
44      Top = 90
45      Width = 51
46      BorderSpacing.Top = 18
47      Caption = 'Matches'
48      ParentColor = False
49    end
50    object lblProgress: TLabel
51      AnchorSideTop.Control = SearchingLabel
52      AnchorSideTop.Side = asrCenter
53      Left = 121
54      Height = 1
55      Top = 63
56      Width = 1
57      ParentColor = False
58      ShowAccelChar = False
59    end
60    object SearchingLabel: TLabel
61      AnchorSideTop.Control = SearchTextLabel
62      AnchorSideTop.Side = asrBottom
63      Left = 16
64      Height = 18
65      Top = 54
66      Width = 62
67      BorderSpacing.Top = 18
68      Caption = 'Searching:'
69      ParentColor = False
70    end
71    object SearchTextLabel: TLabel
72      AnchorSideTop.Control = Panel2
73      Left = 16
74      Height = 18
75      Top = 18
76      Width = 72
77      BorderSpacing.Top = 18
78      Caption = 'Search Text:'
79      ParentColor = False
80    end
81    object lblSearchText: TLabel
82      AnchorSideTop.Control = SearchTextLabel
83      AnchorSideTop.Side = asrCenter
84      Left = 121
85      Height = 1
86      Top = 27
87      Width = 1
88      ParentColor = False
89      ShowAccelChar = False
90    end
91    object btnCancel: TBitBtn
92      AnchorSideLeft.Control = Panel2
93      AnchorSideLeft.Side = asrCenter
94      AnchorSideTop.Side = asrBottom
95      AnchorSideRight.Side = asrBottom
96      AnchorSideBottom.Control = Panel2
97      AnchorSideBottom.Side = asrBottom
98      Left = 310
99      Height = 26
100      Top = 135
101      Width = 80
102      Anchors = [akLeft, akBottom]
103      AutoSize = True
104      BorderSpacing.Top = 12
105      BorderSpacing.Bottom = 6
106      Cancel = True
107      Caption = 'Cancel'
108      Constraints.MinWidth = 80
109      Kind = bkCancel
110      ModalResult = 2
111      OnClick = btnAbortCLICK
112      TabOrder = 0
113    end
114  end
115end
116