object frmFind: TfrmFind Left = 678 Top = 244 HelpContext = 1 BorderStyle = bsDialog Caption = 'Find' ClientHeight = 215 ClientWidth = 368 Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] Position = poScreenCenter OnActivate = FormActivate OnCreate = FormCreate OnHide = FormHide PixelsPerInch = 96 TextHeight = 13 object lblTextToFind: TLabel Left = 8 Top = 10 Width = 56 Height = 13 Caption = '&Text to find:' FocusControl = cmbText end object rgOrigin: TRadioGroup Left = 200 Top = 108 Width = 161 Height = 70 Caption = 'Origin' Items.Strings = ( 'From C&ursor' '&Entire Scope') TabOrder = 5 OnClick = rgOriginClick end object rgDirection: TRadioGroup Left = 200 Top = 40 Width = 161 Height = 65 Caption = 'Direction' Items.Strings = ( '&Forward' '&Backward') TabOrder = 3 OnClick = rgDirectionClick end object gbOptions: TGroupBox Left = 8 Top = 40 Width = 185 Height = 65 Caption = 'Options' TabOrder = 2 object chkCase: TCheckBox Left = 9 Top = 16 Width = 168 Height = 17 Caption = '&Case Sensitive' TabOrder = 0 end object chkWholeWords: TCheckBox Left = 9 Top = 40 Width = 168 Height = 17 Caption = '&Whole words only' TabOrder = 1 end end object cmbText: TComboBox Left = 96 Top = 8 Width = 265 Height = 21 ItemHeight = 13 TabOrder = 0 OnChange = cmbTextChange OnKeyDown = cmbTextKeyDown end object btnFindNext: TButton Left = 184 Top = 184 Width = 97 Height = 25 Caption = '&Find Next' Default = True TabOrder = 1 OnClick = btnFindNextClick end object btnCancel: TButton Left = 286 Top = 184 Width = 75 Height = 25 Cancel = True Caption = 'Cancel' ModalResult = 2 TabOrder = 6 OnClick = btnCancelClick end object gbScope: TGroupBox Left = 8 Top = 108 Width = 185 Height = 70 Caption = 'Scope' TabOrder = 4 object rbGlobal: TRadioButton Left = 8 Top = 16 Width = 169 Height = 17 Caption = '&Global' TabOrder = 0 OnClick = rbGlobalClick end object rbSelectedText: TRadioButton Left = 8 Top = 32 Width = 169 Height = 17 Caption = '&Selected Text' TabOrder = 1 OnClick = rbSelectedTextClick end object rbAllOpenDocs: TRadioButton Left = 8 Top = 48 Width = 169 Height = 17 Caption = 'All Open &Documents' TabOrder = 2 OnClick = rbAllOpenDocsClick end end end