home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1997 June / Freesoft_1997-06_cd.bin / nerecenz / programmers / SSW / SSW.EXE / 0 / RCDATA / TMACROEDITORFORM / TMACROEDITORFORM.txt
Text File  |  1997-05-06  |  3KB  |  161 lines

  1. object MacroEditorForm: TMacroEditorForm
  2.   Left = 258
  3.   Top = 287
  4.   Width = 694
  5.   Height = 288
  6.   Caption = 'Edit Macro'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Panel1: TPanel
  14.     Left = 0
  15.     Top = 0
  16.     Width = 686
  17.     Height = 41
  18.     Align = alTop
  19.     TabOrder = 0
  20.     object Label2: TLabel
  21.       Left = 206
  22.       Top = 12
  23.       Width = 30
  24.       Height = 13
  25.       Caption = '&Macro'
  26.     end
  27.     object Label1: TLabel
  28.       Left = 12
  29.       Top = 12
  30.       Width = 19
  31.       Height = 13
  32.       Caption = 'Tab'
  33.     end
  34.     object Label3: TLabel
  35.       Left = 416
  36.       Top = 16
  37.       Width = 59
  38.       Height = 13
  39.       Caption = 'Abbreviation'
  40.     end
  41.     object MacroName: TEdit
  42.       Left = 246
  43.       Top = 12
  44.       Width = 150
  45.       Height = 21
  46.       TabOrder = 1
  47.     end
  48.     object TabCaption: TEdit
  49.       Left = 44
  50.       Top = 12
  51.       Width = 150
  52.       Height = 21
  53.       TabStop = False
  54.       ParentColor = True
  55.       ReadOnly = True
  56.       TabOrder = 0
  57.     end
  58.     object Abbreviation: TEdit
  59.       Left = 486
  60.       Top = 12
  61.       Width = 73
  62.       Height = 21
  63.       TabOrder = 2
  64.     end
  65.   end
  66.   object Panel3: TPanel
  67.     Left = 0
  68.     Top = 41
  69.     Width = 599
  70.     Height = 199
  71.     Align = alClient
  72.     Caption = 'Panel3'
  73.     TabOrder = 1
  74.     object MacroText: AxCodeEditor
  75.       Left = 8
  76.       Top = 8
  77.       Width = 585
  78.       Height = 185
  79.       Font.Color = clBlack
  80.       Font.Height = -11
  81.       Font.Name = 'Courier New'
  82.       Font.Style = []
  83.       Lines.Strings = (
  84.         
  85.           '1234567890123456789012345678901234567890123456789012345678901234' +
  86.           '5678901234567890'
  87.         '')
  88.       ParentFont = False
  89.       ScrollBars = ssVertical
  90.       TabOrder = 0
  91.       WantTabs = True
  92.       WordWrap = False
  93.       TabSize = 12
  94.     end
  95.   end
  96.   object Panel2: TPanel
  97.     Left = 599
  98.     Top = 41
  99.     Width = 87
  100.     Height = 199
  101.     Align = alRight
  102.     TabOrder = 2
  103.     object OkButton: TButton
  104.       Left = 8
  105.       Top = 8
  106.       Width = 72
  107.       Height = 25
  108.       Caption = '&OK'
  109.       TabOrder = 0
  110.       OnClick = OkButtonClick
  111.     end
  112.     object CancelButton: TButton
  113.       Left = 8
  114.       Top = 40
  115.       Width = 72
  116.       Height = 25
  117.       Caption = '&Cancel'
  118.       ModalResult = 2
  119.       TabOrder = 1
  120.     end
  121.     object Button1: TButton
  122.       Left = 8
  123.       Top = 88
  124.       Width = 72
  125.       Height = 25
  126.       Caption = '&File...'
  127.       TabOrder = 2
  128.       OnClick = Button1Click
  129.     end
  130.   end
  131.   object AxStatusBar1: AxStatusBar
  132.     Left = 0
  133.     Top = 240
  134.     Width = 686
  135.     Height = 21
  136.     Align = alBottom
  137.     Alignment = taLeftJustify
  138.     Font.Color = clBlack
  139.     Font.Height = -11
  140.     Font.Name = 'MS Sans Serif'
  141.     Font.Style = []
  142.     ParentFont = False
  143.     TabOrder = 3
  144.     InfoColor = clBlack
  145.     ErrorColor = clRed
  146.     DefaultColor = clBlack
  147.     BeepOnError = False
  148.     InfoDelay = 0
  149.     ErrorDelay = 0
  150.   end
  151.   object FileSearchDlg: TOpenDialog
  152.     FileEditStyle = fsEdit
  153.     Filter = 
  154.       'Macro files (*.mac)|*.MAC|SQL scripts (*.sql)|*.SQL|Text files (' +
  155.       '*.txt)|*.TXT|All files  (*.*)|*.*'
  156.     Options = [ofHideReadOnly, ofFileMustExist]
  157.     Left = 631
  158.     Top = 185
  159.   end
  160. end
  161.