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

  1. object ThreadSortForm: TThreadSortForm
  2.   Left = 199
  3.   Top = 114
  4.   BorderStyle = bsSingle
  5.   Caption = 'Thread Sorting Demo'
  6.   ClientHeight = 295
  7.   ClientWidth = 563
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Bevel1: TBevel
  17.     Left = 8
  18.     Top = 24
  19.     Width = 177
  20.     Height = 233
  21.   end
  22.   object Bevel3: TBevel
  23.     Left = 376
  24.     Top = 24
  25.     Width = 177
  26.     Height = 233
  27.   end
  28.   object Bevel2: TBevel
  29.     Left = 192
  30.     Top = 24
  31.     Width = 177
  32.     Height = 233
  33.   end
  34.   object BubbleSortBox: TPaintBox
  35.     Left = 8
  36.     Top = 24
  37.     Width = 177
  38.     Height = 233
  39.     OnPaint = BubbleSortBoxPaint
  40.   end
  41.   object SelectionSortBox: TPaintBox
  42.     Left = 192
  43.     Top = 24
  44.     Width = 177
  45.     Height = 233
  46.     OnPaint = SelectionSortBoxPaint
  47.   end
  48.   object QuickSortBox: TPaintBox
  49.     Left = 376
  50.     Top = 24
  51.     Width = 177
  52.     Height = 233
  53.     OnPaint = QuickSortBoxPaint
  54.   end
  55.   object Label1: TLabel
  56.     Left = 8
  57.     Top = 8
  58.     Width = 55
  59.     Height = 13
  60.     Caption = 'Bubble Sort'
  61.   end
  62.   object Label2: TLabel
  63.     Left = 192
  64.     Top = 8
  65.     Width = 66
  66.     Height = 13
  67.     Caption = 'Selection Sort'
  68.   end
  69.   object Label3: TLabel
  70.     Left = 376
  71.     Top = 8
  72.     Width = 50
  73.     Height = 13
  74.     Caption = 'Quick Sort'
  75.   end
  76.   object StartBtn: TButton
  77.     Left = 240
  78.     Top = 264
  79.     Width = 75
  80.     Height = 25
  81.     Caption = 'Start Sorting'
  82.     TabOrder = 0
  83.     OnClick = StartBtnClick
  84.   end
  85. end
  86.