home *** CD-ROM | disk | FTP | other *** search
/ PC Open 19 / pcopen19.iso / Zipped / CALMIR21.ZIP / SOURCE.ZIP / SRC / OPENFILE.DFM / OPENFILE.txt
Encoding:
Text File  |  1998-02-20  |  1.7 KB  |  83 lines

  1. object OpenFileDlg: TOpenFileDlg
  2.   Left = 264
  3.   Top = 136
  4.   ActiveControl = Combo
  5.   BorderStyle = bsDialog
  6.   Caption = 'Open With'
  7.   ClientHeight = 226
  8.   ClientWidth = 262
  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 = 97
  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 = 177
  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 = 246
  55.     Height = 20
  56.     Hint = 'Double click to browse'
  57.     ItemHeight = 13
  58.     ParentShowHint = False
  59.     ShowHint = True
  60.     TabOrder = 0
  61.     OnDblClick = ComboDblClick
  62.   end
  63.   object Listbox: TListBox
  64.     Left = 8
  65.     Top = 54
  66.     Width = 246
  67.     Height = 131
  68.     ItemHeight = 13
  69.     TabOrder = 1
  70.     OnClick = ListboxClick
  71.     OnDblClick = ListboxDblClick
  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.