home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / INFO / DI9810RS.ZIP / TOPO.DFM / TOPO.txt
Text File  |  1998-04-28  |  833b  |  47 lines

  1. object TopoSortForm: TTopoSortForm
  2.   Left = 27
  3.   Top = 114
  4.   BorderStyle = bsSingle
  5.   Caption = 'Topological Sorting'
  6.   ClientHeight = 154
  7.   ClientWidth = 298
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object memInputs: TMemo
  16.     Left = 0
  17.     Top = 2
  18.     Width = 105
  19.     Height = 151
  20.     Lines.Strings = (
  21.       'A < B'
  22.       'B < D'
  23.       'D < G'
  24.       'B < G'
  25.       'C < D'
  26.       'E < F')
  27.     TabOrder = 0
  28.   end
  29.   object memOutputs: TMemo
  30.     Left = 192
  31.     Top = 2
  32.     Width = 105
  33.     Height = 151
  34.     TabOrder = 1
  35.   end
  36.   object cmdSolve: TButton
  37.     Left = 111
  38.     Top = 66
  39.     Width = 75
  40.     Height = 25
  41.     Caption = 'Solve'
  42.     Default = True
  43.     TabOrder = 2
  44.     OnClick = cmdSolveClick
  45.   end
  46. end
  47.