home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / lib.pak / STREDIT.DFM / STREDIT.txt
Encoding:
Text File  |  1995-08-24  |  3.3 KB  |  126 lines

  1. object StrEditDlg: TStrEditDlg
  2.   Left = 267
  3.   Top = 168
  4.   ActiveControl = Memo
  5.   BorderStyle = bsDialog
  6.   Caption = 'String list editor'
  7.   ClientHeight = 278
  8.   ClientWidth = 430
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = [fsBold]
  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: TBitBtn
  43.     Left = 176
  44.     Top = 244
  45.     Width = 77
  46.     Height = 27
  47.     Caption = '&OK'
  48.     Default = True
  49.     ModalResult = 1
  50.     TabOrder = 3
  51.     Glyph.Data = {
  52.       DE010000424DDE01000000000000760000002800000024000000120000000100
  53.       0400000000006801000000000000000000000000000000000000000000000000
  54.       8000008000000080800080000000800080008080000080808000C0C0C0000000
  55.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
  56.       3333333333333333333333330000333333333333333333333333F33333333333
  57.       00003333344333333333333333377F3333333333000033334224333333333333
  58.       337337F3333333330000333422224333333333333733337F3333333300003342
  59.       222224333333333373333337F3333333000034222A22224333333337F337F333
  60.       7F33333300003222A3A2224333333337F3737F337F33333300003A2A333A2224
  61.       33333337F73337F337F33333000033A33333A222433333337333337F337F3333
  62.       0000333333333A222433333333333337F337F33300003333333333A222433333
  63.       333333337F337F33000033333333333A222433333333333337F337F300003333
  64.       33333333A222433333333333337F337F00003333333333333A22433333333333
  65.       3337F37F000033333333333333A223333333333333337F730000333333333333
  66.       333A333333333333333337330000333333333333333333333333333333333333
  67.       0000}
  68.     Margin = 2
  69.     NumGlyphs = 2
  70.     Spacing = -1
  71.   end
  72.   object CancelBtn: TBitBtn
  73.     Left = 260
  74.     Top = 244
  75.     Width = 77
  76.     Height = 27
  77.     TabOrder = 4
  78.     Kind = bkCancel
  79.     Margin = 2
  80.     Spacing = -1
  81.   end
  82.   object LoadBtn: TBitBtn
  83.     Left = 8
  84.     Top = 244
  85.     Width = 77
  86.     Height = 27
  87.     Caption = '&Load...'
  88.     TabOrder = 1
  89.     OnClick = FileOpen
  90.   end
  91.   object SaveBtn: TBitBtn
  92.     Left = 92
  93.     Top = 244
  94.     Width = 77
  95.     Height = 27
  96.     Caption = '&Save...'
  97.     TabOrder = 2
  98.     OnClick = FileSave
  99.   end
  100.   object HelpBtn: TBitBtn
  101.     Left = 344
  102.     Top = 244
  103.     Width = 77
  104.     Height = 27
  105.     TabOrder = 5
  106.     Kind = bkHelp
  107.   end
  108.   object OpenDialog: TOpenDialog
  109.     DefaultExt = 'TXT'
  110.     Filter = 
  111.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  112.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  113.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  114.     Title = 'Load string list'
  115.     Left = 376
  116.   end
  117.   object SaveDialog: TSaveDialog
  118.     Filter = 
  119.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  120.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  121.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  122.     Title = 'Save string list'
  123.     Left = 404
  124.   end
  125. end
  126.