home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d6 / RX275D6.ZIP / Units / STRLEDIT.DFM / STRLEDIT.txt
Text File  |  1999-10-12  |  2KB  |  107 lines

  1. object StrEditDlg: TStrEditDlg
  2.   Left = 247
  3.   Top = 146
  4.   ActiveControl = Memo
  5.   BorderStyle = bsDialog
  6.   Caption = 'String list editor'
  7.   ClientHeight = 278
  8.   ClientWidth = 430
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   TextHeight = 13
  17.   object Bevel1: TBevel
  18.     Left = 8
  19.     Top = 8
  20.     Width = 413
  21.     Height = 229
  22.     Shape = bsFrame
  23.   end
  24.   object LineCount: TLabel
  25.     Left = 12
  26.     Top = 12
  27.     Width = 169
  28.     Height = 17
  29.     AutoSize = False
  30.     Caption = '0 lines'
  31.   end
  32.   object Memo: TMemo
  33.     Left = 16
  34.     Top = 28
  35.     Width = 397
  36.     Height = 201
  37.     ScrollBars = ssBoth
  38.     TabOrder = 0
  39.     OnChange = UpdateStatus
  40.     OnKeyDown = MemoKeyDown
  41.   end
  42.   object OKBtn: TButton
  43.     Left = 187
  44.     Top = 245
  45.     Width = 75
  46.     Height = 25
  47.     Caption = 'OK'
  48.     Default = True
  49.     ModalResult = 1
  50.     TabOrder = 3
  51.   end
  52.   object CancelBtn: TButton
  53.     Left = 267
  54.     Top = 245
  55.     Width = 75
  56.     Height = 25
  57.     Cancel = True
  58.     Caption = 'Cancel'
  59.     ModalResult = 2
  60.     TabOrder = 4
  61.   end
  62.   object HelpBtn: TButton
  63.     Left = 347
  64.     Top = 245
  65.     Width = 75
  66.     Height = 25
  67.     Caption = '&Help'
  68.     TabOrder = 5
  69.     OnClick = HelpBtnClick
  70.   end
  71.   object LoadBtn: TButton
  72.     Left = 8
  73.     Top = 245
  74.     Width = 75
  75.     Height = 25
  76.     Caption = '&Load...'
  77.     TabOrder = 1
  78.     OnClick = FileOpen
  79.   end
  80.   object SaveBtn: TButton
  81.     Left = 92
  82.     Top = 245
  83.     Width = 75
  84.     Height = 25
  85.     Caption = '&Save...'
  86.     TabOrder = 2
  87.     OnClick = FileSave
  88.   end
  89.   object OpenDialog: TOpenDialog
  90.     DefaultExt = 'TXT'
  91.     Filter = 
  92.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  93.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  94.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  95.     Title = 'Load string list'
  96.     Left = 364
  97.   end
  98.   object SaveDialog: TSaveDialog
  99.     Filter = 
  100.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  101.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  102.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  103.     Title = 'Save string list'
  104.     Left = 392
  105.   end
  106. end
  107.