home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / Status / Main.dfm / Main.txt
Text File  |  1998-04-23  |  3KB  |  132 lines

  1. object MainForm: TMainForm
  2.   Left = 200
  3.   Top = 128
  4.   Width = 435
  5.   Height = 263
  6.   Caption = 'Statusbar Demonstration'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnMouseMove = FormMouseMove
  13.   OnResize = FormResize
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 32
  18.     Top = 72
  19.     Width = 167
  20.     Height = 120
  21.     Caption = 
  22.       'Click the Force Exception button to display an error message in ' +
  23.       'the statusbar'
  24.     Font.Charset = DEFAULT_CHARSET
  25.     Font.Color = clMaroon
  26.     Font.Height = -19
  27.     Font.Name = 'MS Sans Serif'
  28.     Font.Style = []
  29.     ParentFont = False
  30.     WordWrap = True
  31.     OnMouseMove = Label1MouseMove
  32.   end
  33.   object Label2: TLabel
  34.     Left = 232
  35.     Top = 128
  36.     Width = 157
  37.     Height = 60
  38.     Caption = 'Move mouse cursor to update coordinates in the status bar'
  39.     Font.Charset = DEFAULT_CHARSET
  40.     Font.Color = clTeal
  41.     Font.Height = -16
  42.     Font.Name = 'MS Sans Serif'
  43.     Font.Style = []
  44.     ParentFont = False
  45.     WordWrap = True
  46.     OnMouseMove = Label1MouseMove
  47.   end
  48.   object StatusBar1: TStatusBar
  49.     Left = 0
  50.     Top = 215
  51.     Width = 427
  52.     Height = 21
  53.     Panels = <
  54.       item
  55.         Text = 'X = 000'
  56.         Width = 50
  57.       end
  58.       item
  59.         Text = 'Y = 000'
  60.         Width = 50
  61.       end
  62.       item
  63.         Width = 250
  64.       end
  65.       item
  66.         Text = 'hh:mm:ss'
  67.         Width = 75
  68.       end>
  69.     SimplePanel = False
  70.   end
  71.   object CoolBar1: TCoolBar
  72.     Left = 0
  73.     Top = 0
  74.     Width = 427
  75.     Height = 33
  76.     Bands = <
  77.       item
  78.         Control = ToolBar1
  79.         ImageIndex = -1
  80.         MinHeight = 33
  81.         Width = 423
  82.       end>
  83.     object ToolBar1: TToolBar
  84.       Left = 9
  85.       Top = 0
  86.       Width = 410
  87.       Height = 33
  88.       ButtonHeight = 21
  89.       ButtonWidth = 84
  90.       Color = clSilver
  91.       Flat = True
  92.       ParentColor = False
  93.       ShowCaptions = True
  94.       TabOrder = 0
  95.       object ToolButton1: TToolButton
  96.         Left = 0
  97.         Top = 0
  98.         Caption = 'Force Exception'
  99.         ImageIndex = 0
  100.         OnClick = ToolButton1Click
  101.       end
  102.       object ToolButton2: TToolButton
  103.         Left = 84
  104.         Top = 0
  105.         Caption = 'Clear Message'
  106.         ImageIndex = 1
  107.         OnClick = ToolButton2Click
  108.       end
  109.       object ToolButton3: TToolButton
  110.         Left = 168
  111.         Top = 0
  112.         Width = 8
  113.         Caption = 'ToolButton3'
  114.         ImageIndex = 2
  115.         Style = tbsSeparator
  116.       end
  117.       object ToolButton4: TToolButton
  118.         Left = 176
  119.         Top = 0
  120.         Caption = 'Close'
  121.         ImageIndex = 2
  122.         OnClick = ToolButton4Click
  123.       end
  124.     end
  125.   end
  126.   object Timer1: TTimer
  127.     OnTimer = Timer1Timer
  128.     Left = 272
  129.     Top = 48
  130.   end
  131. end
  132.