home *** CD-ROM | disk | FTP | other *** search
/ PC World Plus! (NZ) 2001 June / HDC50.iso / Runimage / Delphi50 / Help / Examples / Prgrsbar / PG1.DFM / PG1.txt
Encoding:
Text File  |  1999-08-11  |  2.4 KB  |  133 lines

  1. object Form1: TForm1
  2.   Left = 516
  3.   Top = 256
  4.   Width = 712
  5.   Height = 507
  6.   Caption = 'TThread, TTrackBar, TProgressBar'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   Position = poDesktopCenter
  15.   OnCreate = FormCreate
  16.   OnDestroy = FormDestroy
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Bevel1: TBevel
  20.     Left = 32
  21.     Top = 8
  22.     Width = 513
  23.     Height = 169
  24.   end
  25.   object Bevel2: TBevel
  26.     Left = 32
  27.     Top = 200
  28.     Width = 513
  29.     Height = 169
  30.   end
  31.   object Label1: TLabel
  32.     Left = 256
  33.     Top = 104
  34.     Width = 34
  35.     Height = 13
  36.     Caption = 'Priority:'
  37.   end
  38.   object Label2: TLabel
  39.     Left = 248
  40.     Top = 296
  41.     Width = 34
  42.     Height = 13
  43.     Caption = 'Priority:'
  44.   end
  45.   object ProgressBar1: TProgressBar
  46.     Left = 64
  47.     Top = 32
  48.     Width = 393
  49.     Height = 25
  50.     Min = 0
  51.     Max = 100
  52.     Step = 1
  53.     TabOrder = 0
  54.   end
  55.   object ProgressBar2: TProgressBar
  56.     Left = 64
  57.     Top = 224
  58.     Width = 401
  59.     Height = 25
  60.     Min = 0
  61.     Max = 100
  62.     TabOrder = 1
  63.   end
  64.   object Button1: TButton
  65.     Left = 72
  66.     Top = 80
  67.     Width = 105
  68.     Height = 25
  69.     Caption = 'Create Thread'
  70.     TabOrder = 2
  71.     OnClick = Button1Click
  72.   end
  73.   object Button2: TButton
  74.     Left = 72
  75.     Top = 272
  76.     Width = 105
  77.     Height = 25
  78.     Caption = 'Create Thread'
  79.     TabOrder = 3
  80.     OnClick = Button2Click
  81.   end
  82.   object TrackBar1: TTrackBar
  83.     Left = 296
  84.     Top = 104
  85.     Width = 193
  86.     Height = 33
  87.     Max = 6
  88.     Orientation = trHorizontal
  89.     Frequency = 1
  90.     Position = 3
  91.     SelEnd = 0
  92.     SelStart = 0
  93.     TabOrder = 4
  94.     TickMarks = tmBottomRight
  95.     TickStyle = tsAuto
  96.     OnChange = TrackBar1Change
  97.   end
  98.   object TrackBar2: TTrackBar
  99.     Left = 288
  100.     Top = 296
  101.     Width = 193
  102.     Height = 45
  103.     Max = 6
  104.     Orientation = trHorizontal
  105.     Frequency = 1
  106.     Position = 3
  107.     SelEnd = 0
  108.     SelStart = 0
  109.     TabOrder = 5
  110.     TickMarks = tmBottomRight
  111.     TickStyle = tsAuto
  112.     OnChange = TrackBar2Change
  113.   end
  114.   object Button3: TButton
  115.     Left = 72
  116.     Top = 128
  117.     Width = 105
  118.     Height = 25
  119.     Caption = 'Terminate Thread'
  120.     TabOrder = 6
  121.     OnClick = Button3Click
  122.   end
  123.   object Button4: TButton
  124.     Left = 72
  125.     Top = 320
  126.     Width = 105
  127.     Height = 25
  128.     Caption = 'Terminate Thread'
  129.     TabOrder = 7
  130.     OnClick = Button4Click
  131.   end
  132. end
  133.