home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / STREDIT.DFM / STREDIT.txt
Text File  |  1997-02-28  |  3KB  |  117 lines

  1. object StrEditDlg: TStrEditDlg
  2.   Left = 226
  3.   Top = 123
  4.   BorderStyle = bsDialog
  5.   Caption = 'String list editor'
  6.   ClientHeight = 279
  7.   ClientWidth = 430
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   PopupMenu = StringEditorMenu
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   TextHeight = 13
  16.   object Bevel1: TBevel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 413
  20.     Height = 229
  21.     Shape = bsFrame
  22.   end
  23.   object LineCount: TLabel
  24.     Left = 12
  25.     Top = 12
  26.     Width = 169
  27.     Height = 17
  28.     AutoSize = False
  29.     Caption = '0 lines'
  30.   end
  31.   object CodeWndBtn: TButton
  32.     Left = 8
  33.     Top = 248
  34.     Width = 75
  35.     Height = 25
  36.     Caption = '&Code Editor...'
  37.     ModalResult = 6
  38.     TabOrder = 1
  39.   end
  40.   object HelpButton: TButton
  41.     Left = 345
  42.     Top = 248
  43.     Width = 75
  44.     Height = 25
  45.     Caption = '&Help'
  46.     TabOrder = 4
  47.     OnClick = HelpButtonClick
  48.   end
  49.   object OKButton: TButton
  50.     Left = 185
  51.     Top = 248
  52.     Width = 75
  53.     Height = 25
  54.     Caption = '&OK'
  55.     Default = True
  56.     ModalResult = 1
  57.     TabOrder = 2
  58.   end
  59.   object CancelButton: TButton
  60.     Left = 265
  61.     Top = 248
  62.     Width = 75
  63.     Height = 25
  64.     Cancel = True
  65.     Caption = 'Cancel'
  66.     ModalResult = 2
  67.     TabOrder = 3
  68.   end
  69.   object Memo: TRichEdit
  70.     Left = 16
  71.     Top = 31
  72.     Width = 397
  73.     Height = 197
  74.     HideScrollBars = False
  75.     PlainText = True
  76.     ScrollBars = ssBoth
  77.     TabOrder = 0
  78.     WordWrap = False
  79.     OnChange = UpdateStatus
  80.     OnKeyDown = Memo1KeyDown
  81.   end
  82.   object OpenDialog: TOpenDialog
  83.     DefaultExt = 'TXT'
  84.     FileEditStyle = fsEdit
  85.     Filter = 
  86.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  87.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  88.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  89.     Title = 'Load string list'
  90.     Left = 376
  91.   end
  92.   object SaveDialog: TSaveDialog
  93.     FileEditStyle = fsEdit
  94.     Filter = 
  95.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  96.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  97.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  98.     Title = 'Save string list'
  99.     Left = 404
  100.   end
  101.   object StringEditorMenu: TPopupMenu
  102.     Left = 344
  103.     object LoadItem: TMenuItem
  104.       Caption = '&Load...'
  105.       OnClick = FileOpen
  106.     end
  107.     object SaveItem: TMenuItem
  108.       Caption = '&Save...'
  109.       OnClick = FileSave
  110.     end
  111.     object CodeEditorItem: TMenuItem
  112.       Caption = '&Code Editor...'
  113.       OnClick = CodeWndBtnClick
  114.     end
  115.   end
  116. end
  117.