home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BCB.EXE / RCDATA / TFINDHEADERFILE / TFINDHEADERFILE.txt
Text File  |  1997-01-16  |  2KB  |  106 lines

  1. object FindHeaderFile: TFindHeaderFile
  2.   Left = 244
  3.   Top = 164
  4.   HelpContext = 5681
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Find Header File'
  8.   ClientHeight = 182
  9.   ClientWidth = 378
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Button1: TButton
  19.     Left = 64
  20.     Top = 144
  21.     Width = 75
  22.     Height = 25
  23.     Caption = 'OK'
  24.     Default = True
  25.     TabOrder = 1
  26.     OnClick = Button1Click
  27.   end
  28.   object Button2: TButton
  29.     Left = 156
  30.     Top = 144
  31.     Width = 75
  32.     Height = 25
  33.     Cancel = True
  34.     Caption = '&Cancel'
  35.     ModalResult = 2
  36.     TabOrder = 2
  37.   end
  38.   object Button3: TButton
  39.     Left = 248
  40.     Top = 144
  41.     Width = 75
  42.     Height = 25
  43.     Caption = '&Help'
  44.     TabOrder = 3
  45.     OnClick = Button3Click
  46.   end
  47.   object GroupBox1: TGroupBox
  48.     Left = 16
  49.     Top = 8
  50.     Width = 345
  51.     Height = 121
  52.     TabOrder = 0
  53.     object Label1: TLabel
  54.       Left = 16
  55.       Top = 48
  56.       Width = 73
  57.       Height = 25
  58.       AutoSize = False
  59.       Caption = 'Header &File:'
  60.       FocusControl = edHeaderFile
  61.     end
  62.     object Label2: TLabel
  63.       Left = 16
  64.       Top = 16
  65.       Width = 217
  66.       Height = 25
  67.       AutoSize = False
  68.       Caption = 'Unable to find header file for component: '
  69.     end
  70.     object stComponentName: TLabel
  71.       Left = 240
  72.       Top = 16
  73.       Width = 89
  74.       Height = 25
  75.       AutoSize = False
  76.       Caption = 'Component'
  77.     end
  78.     object edHeaderFile: TEdit
  79.       Left = 96
  80.       Top = 48
  81.       Width = 233
  82.       Height = 21
  83.       AutoSize = False
  84.       TabOrder = 0
  85.     end
  86.     object Button4: TButton
  87.       Left = 254
  88.       Top = 80
  89.       Width = 75
  90.       Height = 25
  91.       Caption = '&Browse'
  92.       TabOrder = 1
  93.       OnClick = Button4Click
  94.     end
  95.   end
  96.   object OpenDialog1: TOpenDialog
  97.     DefaultExt = '.h'
  98.     FileEditStyle = fsEdit
  99.     Filter = 'Header files (*.h;*.hpp)|*.h;*.hpp|All files (*.*)|*.*'
  100.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  101.     Title = 'Locate Header File'
  102.     Left = 16
  103.     Top = 136
  104.   end
  105. end
  106.