home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / FINDREPL / MAIN.dfm / MAIN.txt
Text File  |  1998-05-14  |  2KB  |  78 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 117
  4.   AutoScroll = False
  5.   Caption = 'Find and Replace Demonstration'
  6.   ClientHeight = 314
  7.   ClientWidth = 419
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -16
  12.   Font.Name = 'System'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   PixelsPerInch = 120
  16.   TextHeight = 20
  17.   object ListBox1: TListBox
  18.     Left = 70
  19.     Top = 20
  20.     Width = 151
  21.     Height = 271
  22.     ItemHeight = 20
  23.     Items.Strings = (
  24.       'BlueEdit'
  25.       'BlueLabel'
  26.       'BlueSB'
  27.       'ClearBitBtn'
  28.       'CloseBitBtn'
  29.       'ColorEdit'
  30.       'ColorLabel'
  31.       'FileAbout'
  32.       'FileExit'
  33.       'FileMenu'
  34.       'GreenEdit'
  35.       'GreenLabel'
  36.       'GreenSB')
  37.     TabOrder = 0
  38.   end
  39.   object FindBitBtn: TBitBtn
  40.     Left = 290
  41.     Top = 150
  42.     Width = 111
  43.     Height = 41
  44.     Caption = '&Find...'
  45.     TabOrder = 1
  46.     OnClick = FindBitBtnClick
  47.   end
  48.   object CloseBitBtn: TBitBtn
  49.     Left = 290
  50.     Top = 250
  51.     Width = 111
  52.     Height = 41
  53.     TabOrder = 2
  54.     Kind = bkClose
  55.   end
  56.   object ReplaceBitBtn: TBitBtn
  57.     Left = 290
  58.     Top = 200
  59.     Width = 111
  60.     Height = 41
  61.     Caption = '&Replace...'
  62.     TabOrder = 3
  63.     OnClick = ReplaceBitBtnClick
  64.   end
  65.   object FindDialog: TFindDialog
  66.     OnFind = FindDialogFind
  67.     Left = 208
  68.     Top = 16
  69.   end
  70.   object ReplaceDialog: TReplaceDialog
  71.     Options = [frDown, frDisableMatchCase, frDisableUpDown, frDisableWholeWord]
  72.     OnFind = ReplaceDialogFind
  73.     OnReplace = ReplaceDialogReplace
  74.     Left = 264
  75.     Top = 56
  76.   end
  77. end
  78.