home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / COMBOS / MAIN.dfm / MAIN.txt
Text File  |  1998-05-14  |  3KB  |  138 lines

  1. object MainForm: TMainForm
  2.   Left = 193
  3.   Top = 149
  4.   AutoScroll = False
  5.   Caption = 'ComboBox Styles'
  6.   ClientHeight = 303
  7.   ClientWidth = 624
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -16
  12.   Font.Name = 'System'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   PixelsPerInch = 120
  16.   TextHeight = 20
  17.   object Label1: TLabel
  18.     Left = 80
  19.     Top = 10
  20.     Width = 53
  21.     Height = 20
  22.     Caption = 'Simple'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 260
  26.     Top = 10
  27.     Width = 89
  28.     Height = 20
  29.     Caption = 'Drop Down'
  30.   end
  31.   object Label3: TLabel
  32.     Left = 450
  33.     Top = 10
  34.     Width = 122
  35.     Height = 20
  36.     Caption = 'Drop Down List'
  37.   end
  38.   object SimpleCB: TComboBox
  39.     Left = 20
  40.     Top = 40
  41.     Width = 181
  42.     Height = 201
  43.     Style = csSimple
  44.     ItemHeight = 20
  45.     Items.Strings = (
  46.       'Australia'
  47.       'Canada'
  48.       'France'
  49.       'Germany'
  50.       'Great Britain'
  51.       'Mexico'
  52.       'Sweden'
  53.       'United States')
  54.     TabOrder = 0
  55.   end
  56.   object DropDownCB: TComboBox
  57.     Left = 220
  58.     Top = 40
  59.     Width = 181
  60.     Height = 28
  61.     ItemHeight = 20
  62.     Items.Strings = (
  63.       'Georgia'
  64.       'Maryland'
  65.       'Montana'
  66.       'Nevada'
  67.       'New Hampshire'
  68.       'Ohio'
  69.       'Pennsylvania'
  70.       'Texas'
  71.       'Virginia')
  72.     TabOrder = 1
  73.   end
  74.   object DropDownListCB: TComboBox
  75.     Left = 420
  76.     Top = 40
  77.     Width = 181
  78.     Height = 28
  79.     Style = csDropDownList
  80.     ItemHeight = 20
  81.     Items.Strings = (
  82.       'Philadelphia'
  83.       'Peterborough'
  84.       'Baltimore'
  85.       'Phoenix'
  86.       'San Antonio'
  87.       'Key West'
  88.       'San Francisco'
  89.       'Atlanta')
  90.     TabOrder = 2
  91.   end
  92.   object CancelBitBtn: TBitBtn
  93.     Left = 230
  94.     Top = 240
  95.     Width = 111
  96.     Height = 41
  97.     TabOrder = 3
  98.     OnClick = CancelBitBtnClick
  99.     Kind = bkCancel
  100.   end
  101.   object OKBitBtn: TBitBtn
  102.     Left = 360
  103.     Top = 240
  104.     Width = 111
  105.     Height = 41
  106.     TabOrder = 4
  107.     OnClick = OKBitBtnClick
  108.     Kind = bkOK
  109.   end
  110.   object CloseBitBtn: TBitBtn
  111.     Left = 490
  112.     Top = 240
  113.     Width = 101
  114.     Height = 41
  115.     Caption = '&Close'
  116.     TabOrder = 5
  117.     OnClick = CloseBitBtnClick
  118.     Glyph.Data = {
  119.       DE010000424DDE01000000000000760000002800000024000000120000000100
  120.       0400000000006801000000000000000000001000000010000000000000000000
  121.       8000008000000080800080000000800080008080000080808000C0C0C0000000
  122.       FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00377777777788
  123.       F8F878F7777777777333333F00004444400777FFF444447777777777F333FF7F
  124.       000033334D5008FFF4333377777777773337777F0000333345D50FFFF4333333
  125.       337F777F3337F33F000033334D5D0FFFF43333333377877F3337F33F00003333
  126.       45D50FEFE4333333337F787F3337F33F000033334D5D0FFFF43333333377877F
  127.       3337F33F0000333345D50FEFE4333333337F787F3337F33F000033334D5D0FFF
  128.       F43333333377877F3337F33F0000333345D50FEFE4333333337F787F3337F33F
  129.       000033334D5D0EFEF43333333377877F3337F33F0000333345D50FEFE4333333
  130.       337F787F3337F33F000033334D5D0EFEF43333333377877F3337F33F00003333
  131.       4444444444333333337F7F7FFFF7F33F00003333333333333333333333777777
  132.       7777333F00003333330000003333333333333FFFFFF3333F00003333330AAAA0
  133.       333333333333777777F3333F00003333330000003333333333337FFFF7F3333F
  134.       0000}
  135.     NumGlyphs = 2
  136.   end
  137. end
  138.