home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 April A / Pcwk4a98.iso / PROGRAM / DELPHI16 / Calmira / Src / SRC / OPENFILE.DFM / OPENFILE.txt
Text File  |  1997-01-19  |  2KB  |  83 lines

  1. object OpenFileDlg: TOpenFileDlg
  2.   Left = 264
  3.   Top = 136
  4.   ActiveControl = Combo
  5.   BorderStyle = bsDialog
  6.   Caption = 'Open file with'
  7.   ClientHeight = 226
  8.   ClientWidth = 216
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 10
  20.     Top = 8
  21.     Width = 68
  22.     Height = 13
  23.     Caption = '&Program name'
  24.     FocusControl = Combo
  25.   end
  26.   object OKBtn: TBitBtn
  27.     Left = 52
  28.     Top = 192
  29.     Width = 77
  30.     Height = 27
  31.     TabOrder = 2
  32.     OnClick = OKBtnClick
  33.     Kind = bkOK
  34.     Margin = 4
  35.     Style = bsNew
  36.     Spacing = -1
  37.     IsControl = True
  38.   end
  39.   object CancelBtn: TBitBtn
  40.     Left = 132
  41.     Top = 192
  42.     Width = 77
  43.     Height = 27
  44.     TabOrder = 3
  45.     Kind = bkCancel
  46.     Margin = 4
  47.     Style = bsNew
  48.     Spacing = -1
  49.     IsControl = True
  50.   end
  51.   object Combo: TComboBox
  52.     Left = 8
  53.     Top = 26
  54.     Width = 199
  55.     Height = 20
  56.     Cursor = crIBeam
  57.     Hint = 'Double click to browse'
  58.     ItemHeight = 13
  59.     ParentShowHint = False
  60.     ShowHint = True
  61.     TabOrder = 0
  62.     OnDblClick = ComboDblClick
  63.   end
  64.   object Listbox: TListBox
  65.     Left = 8
  66.     Top = 54
  67.     Width = 199
  68.     Height = 131
  69.     ItemHeight = 13
  70.     TabOrder = 1
  71.     OnClick = ListboxClick
  72.   end
  73.   object OpenDialog: TOpenDialog
  74.     Filter = 
  75.       'All programs|*.exe *.com *.pif *.bat|Executable files|*.exe|PIF ' +
  76.       'files|*.pif|DOS commands|*.com|Batch files|*.bat|All files|*.*'
  77.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  78.     Title = 'Select program'
  79.     Left = 8
  80.     Top = 192
  81.   end
  82. end
  83.