home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day08 / button.dfm / button.txt
Encoding:
Text File  |  1998-02-08  |  2.1 KB  |  123 lines

  1. object ButtonForm: TButtonForm
  2.   Left = 227
  3.   Top = 136
  4.   Width = 435
  5.   Height = 300
  6.   Caption = 'Button Test'
  7.   Font.Color = clWindowText
  8.   Font.Height = -11
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object Label1: TLabel
  14.     Left = 140
  15.     Top = 24
  16.     Width = 147
  17.     Height = 24
  18.     Caption = 'Click On A Button'
  19.     Font.Color = clWindowText
  20.     Font.Height = -21
  21.     Font.Name = 'MS Sans Serif'
  22.     Font.Style = []
  23.     ParentFont = False
  24.   end
  25.   object Bevel1: TBevel
  26.     Left = 0
  27.     Top = 230
  28.     Width = 427
  29.     Height = 2
  30.     Align = alBottom
  31.   end
  32.   object OK: TButton
  33.     Left = 128
  34.     Top = 176
  35.     Width = 75
  36.     Height = 25
  37.     Caption = '&OK'
  38.     ModalResult = 1
  39.     TabOrder = 0
  40.   end
  41.   object Ignore: TButton
  42.     Left = 280
  43.     Top = 80
  44.     Width = 75
  45.     Height = 25
  46.     Caption = '&Ignore'
  47.     ModalResult = 5
  48.     TabOrder = 1
  49.   end
  50.   object Cancel: TButton
  51.     Left = 232
  52.     Top = 176
  53.     Width = 75
  54.     Height = 25
  55.     Caption = '&Cancel'
  56.     ModalResult = 2
  57.     TabOrder = 2
  58.   end
  59.   object Abort: TButton
  60.     Left = 184
  61.     Top = 80
  62.     Width = 75
  63.     Height = 25
  64.     Caption = '&Abort'
  65.     ModalResult = 3
  66.     TabOrder = 3
  67.   end
  68.   object Retry: TButton
  69.     Left = 80
  70.     Top = 80
  71.     Width = 75
  72.     Height = 25
  73.     Caption = '&Retry'
  74.     ModalResult = 4
  75.     TabOrder = 4
  76.   end
  77.   object Yes: TButton
  78.     Left = 128
  79.     Top = 128
  80.     Width = 75
  81.     Height = 25
  82.     Caption = '&Yes'
  83.     ModalResult = 6
  84.     TabOrder = 5
  85.   end
  86.   object No: TButton
  87.     Left = 232
  88.     Top = 128
  89.     Width = 75
  90.     Height = 25
  91.     Caption = '&No'
  92.     ModalResult = 7
  93.     TabOrder = 6
  94.   end
  95.   object Panel1: TPanel
  96.     Left = 0
  97.     Top = 232
  98.     Width = 427
  99.     Height = 41
  100.     Align = alBottom
  101.     BevelOuter = bvNone
  102.     TabOrder = 7
  103.     object EnableAllButton: TButton
  104.       Left = 73
  105.       Top = 8
  106.       Width = 97
  107.       Height = 25
  108.       Caption = '&Enable All'
  109.       TabOrder = 0
  110.       OnClick = EnableAllButtonClick
  111.     end
  112.     object DisableAllButton: TButton
  113.       Left = 257
  114.       Top = 8
  115.       Width = 97
  116.       Height = 25
  117.       Caption = '&Disable All'
  118.       TabOrder = 1
  119.       OnClick = EnableAllButtonClick
  120.     end
  121.   end
  122. end
  123.