home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 June / Chip_2002-06_cd1.bin / zkuste / delphi / kolekce / d6 / rxlibsetup.exe / {app} / units / STRLEDIT.dfm / STRLEDIT.txt
Encoding:
Text File  |  1999-10-12  |  2.3 KB  |  110 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.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = True
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Bevel1: TBevel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 413
  24.     Height = 229
  25.     Shape = bsFrame
  26.   end
  27.   object LineCount: TLabel
  28.     Left = 12
  29.     Top = 12
  30.     Width = 169
  31.     Height = 17
  32.     AutoSize = False
  33.     Caption = '0 lines'
  34.   end
  35.   object Memo: TMemo
  36.     Left = 16
  37.     Top = 28
  38.     Width = 397
  39.     Height = 201
  40.     ScrollBars = ssBoth
  41.     TabOrder = 0
  42.     OnChange = UpdateStatus
  43.     OnKeyDown = MemoKeyDown
  44.   end
  45.   object OKBtn: TButton
  46.     Left = 187
  47.     Top = 245
  48.     Width = 75
  49.     Height = 25
  50.     Caption = 'OK'
  51.     Default = True
  52.     ModalResult = 1
  53.     TabOrder = 3
  54.   end
  55.   object CancelBtn: TButton
  56.     Left = 267
  57.     Top = 245
  58.     Width = 75
  59.     Height = 25
  60.     Cancel = True
  61.     Caption = 'Cancel'
  62.     ModalResult = 2
  63.     TabOrder = 4
  64.   end
  65.   object HelpBtn: TButton
  66.     Left = 347
  67.     Top = 245
  68.     Width = 75
  69.     Height = 25
  70.     Caption = '&Help'
  71.     TabOrder = 5
  72.     OnClick = HelpBtnClick
  73.   end
  74.   object LoadBtn: TButton
  75.     Left = 8
  76.     Top = 245
  77.     Width = 75
  78.     Height = 25
  79.     Caption = '&Load...'
  80.     TabOrder = 1
  81.     OnClick = FileOpen
  82.   end
  83.   object SaveBtn: TButton
  84.     Left = 92
  85.     Top = 245
  86.     Width = 75
  87.     Height = 25
  88.     Caption = '&Save...'
  89.     TabOrder = 2
  90.     OnClick = FileSave
  91.   end
  92.   object OpenDialog: TOpenDialog
  93.     DefaultExt = 'TXT'
  94.     Filter = 
  95.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  96.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  97.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  98.     Title = 'Load string list'
  99.     Left = 364
  100.   end
  101.   object SaveDialog: TSaveDialog
  102.     Filter = 
  103.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  104.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  105.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  106.     Title = 'Save string list'
  107.     Left = 392
  108.   end
  109. end
  110.