home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 February / Chip_2001-02_cd1.bin / sharewar / talisman / _SETUP.1 / talisman.exe / 0 / RCDATA / TRUNDIALOG / TRUNDIALOG.txt < prev   
Text File  |  2000-10-04  |  2KB  |  97 lines

  1. object RunDialog: TRunDialog
  2.   Left = 239
  3.   Top = 233
  4.   ActiveControl = RunLine
  5.   BorderIcons = [biSystemMenu, biHelp]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Run'
  8.   ClientHeight = 136
  9.   ClientWidth = 339
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Icon.Data = {<image000.ico>}
  16.   KeyPreview = True
  17.   Position = poScreenCenter
  18.   OnActivate = FormActivate
  19.   OnKeyPress = FormKeyPress
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Image1: TImage
  23.     Left = 8
  24.     Top = 16
  25.     Width = 32
  26.     Height = 32
  27.     AutoSize = True
  28.     Picture.Data = {<image001.ico>}
  29.   end
  30.   object Label1: TLabel
  31.     Left = 48
  32.     Top = 16
  33.     Width = 264
  34.     Height = 26
  35.     Caption = 
  36.       'Type the name of a program, folder, document, or URL, and Window' +
  37.       's will open it for you.'
  38.     Transparent = True
  39.     WordWrap = True
  40.   end
  41.   object Label2: TLabel
  42.     Left = 8
  43.     Top = 60
  44.     Width = 29
  45.     Height = 13
  46.     Caption = '&Open:'
  47.     FocusControl = RunLine
  48.   end
  49.   object RunLine: TComboBox
  50.     Left = 48
  51.     Top = 56
  52.     Width = 281
  53.     Height = 21
  54.     HelpContext = 1001
  55.     ItemHeight = 13
  56.     TabOrder = 0
  57.   end
  58.   object OKBtn: TButton
  59.     Left = 96
  60.     Top = 96
  61.     Width = 75
  62.     Height = 25
  63.     Caption = 'OK'
  64.     ModalResult = 1
  65.     TabOrder = 1
  66.     OnClick = OKBtnClick
  67.   end
  68.   object CancelBtn: TButton
  69.     Left = 176
  70.     Top = 96
  71.     Width = 75
  72.     Height = 25
  73.     Cancel = True
  74.     Caption = 'Cancel'
  75.     ModalResult = 2
  76.     TabOrder = 2
  77.   end
  78.   object BrowseBtn: TButton
  79.     Left = 256
  80.     Top = 96
  81.     Width = 75
  82.     Height = 25
  83.     Caption = '&Browse...'
  84.     TabOrder = 3
  85.     OnClick = BrowseBtnClick
  86.   end
  87.   object OpenDialog: TOpenDialog
  88.     DefaultExt = 'exe'
  89.     Filter = 
  90.       'Programs|*.exe;*.pif;*.lnk;*.bat;*.com;*.cmd;*.url;*.htm;*.html;' +
  91.       '*.doc;*.rtf;*.txt|All Files (*.*)|*.*'
  92.     Title = 'Browse'
  93.     Left = 24
  94.     Top = 88
  95.   end
  96. end
  97.