home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d23456 / CAJSCRTP.ZIP / demo_kylix / demo1.dfm / demo1.txt
Text File  |  2001-05-20  |  3KB  |  136 lines

  1. object Main: TMain
  2.   Left = 238
  3.   Top = 155
  4.   Width = 536
  5.   Height = 354
  6.   VertScrollBar.Range = 156
  7.   ActiveControl = Memo1
  8.   Caption = 'Demo'
  9.   Color = clButton
  10.   Font.Color = clText
  11.   Font.Height = 11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Pitch = fpVariable
  14.   Font.Style = []
  15.   Font.Weight = 0
  16.   Menu = MainMenu1
  17.   ParentFont = False
  18.   Position = poScreenCenter
  19.   Scaled = False
  20.   OnClose = FormClose
  21.   OnCloseQuery = FormCloseQuery
  22.   OnCreate = FormCreate
  23.   OnDestroy = FormDestroy
  24.   PixelsPerInch = 75
  25.   object Splitter1: TSplitter
  26.     Left = 0
  27.     Top = 153
  28.     Width = 536
  29.     Height = 3
  30.     Cursor = crVSplit
  31.     Align = alTop
  32.   end
  33.   object Memo1: TMemo
  34.     Left = 0
  35.     Top = 0
  36.     Width = 536
  37.     Height = 153
  38.     Align = alTop
  39.     Lines.Strings = (
  40.       'Program IFSTest;'
  41.       'Begin'
  42.       'End.')
  43.     ScrollBars = ssBoth
  44.     TabOrder = 0
  45.     OnChange = Memo1Change
  46.   end
  47.   object memo2: TMemo
  48.     Left = 0
  49.     Top = 156
  50.     Width = 536
  51.     Height = 173
  52.     Align = alClient
  53.     ReadOnly = True
  54.     ScrollBars = ssBoth
  55.     TabOrder = 1
  56.   end
  57.   object MainMenu1: TMainMenu
  58.     Left = 96
  59.     Top = 128
  60.     object File1: TMenuItem
  61.       Caption = '&File'
  62.       object New1: TMenuItem
  63.         Caption = '&New'
  64.         OnClick = New1Click
  65.       end
  66.       object N2: TMenuItem
  67.         Caption = '-'
  68.       end
  69.       object Open1: TMenuItem
  70.         Caption = '&Open'
  71.         ShortCut = 16463
  72.         OnClick = Open1Click
  73.       end
  74.       object Save1: TMenuItem
  75.         Caption = '&Save'
  76.         ShortCut = 16467
  77.         OnClick = Save1Click
  78.       end
  79.       object Saveas1: TMenuItem
  80.         Caption = 'Save &as'
  81.         OnClick = Saveas1Click
  82.       end
  83.       object N1: TMenuItem
  84.         Caption = '-'
  85.       end
  86.       object Exit1: TMenuItem
  87.         Caption = 'E&xit'
  88.         ShortCut = 32856
  89.         OnClick = Exit1Click
  90.       end
  91.     end
  92.     object Script1: TMenuItem
  93.       Caption = '&Script'
  94.       object Run1: TMenuItem
  95.         Caption = '&Run'
  96.         ShortCut = 4152
  97.         OnClick = Run1Click
  98.       end
  99.       object Stop1: TMenuItem
  100.         Caption = '&Stop'
  101.         ShortCut = 20529
  102.         OnClick = Stop1Click
  103.       end
  104.       object N3: TMenuItem
  105.         Caption = '-'
  106.       end
  107.       object Runproceduretest1: TMenuItem
  108.         Caption = 'Run &Procedure'
  109.         OnClick = Runproceduretest1Click
  110.       end
  111.       object RunwithTestObject1: TMenuItem
  112.         Caption = 'Run with &Class'
  113.         OnClick = RunwithTestObject1Click
  114.       end
  115.       object RunwithaddedVariables1: TMenuItem
  116.         Caption = 'Run with &Variables'
  117.         OnClick = RunwithaddedVariables1Click
  118.       end
  119.     end
  120.   end
  121.   object OpenDialog1: TOpenDialog
  122.     DefaultExt = 'ifs'
  123.     Filter = 'ifs Files|*.ifs'
  124.     Title = 'Open'
  125.     Left = 256
  126.     Top = 152
  127.   end
  128.   object SaveDialog1: TSaveDialog
  129.     DefaultExt = 'ifs'
  130.     Filter = 'ifs Files|*.ifs'
  131.     Title = 'Save As'
  132.     Left = 264
  133.     Top = 160
  134.   end
  135. end
  136.