home *** CD-ROM | disk | FTP | other *** search
/ Delphi 4 Bible / Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso / source / COLORDLG / TEST.exe / 0 / RCDATA / TCOLORDLGFORM / TCOLORDLGFORM.txt
Text File  |  1998-05-14  |  3KB  |  156 lines

  1. object ColorDlgForm: TColorDlgForm
  2.   Left = 203
  3.   Top = 111
  4.   BorderStyle = bsDialog
  5.   Caption = 'Color Selection Dialog'
  6.   ClientHeight = 167
  7.   ClientWidth = 386
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   OnActivate = FormActivate
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 16
  17.   object Bevel1: TBevel
  18.     Left = 16
  19.     Top = 8
  20.     Width = 353
  21.     Height = 113
  22.   end
  23.   object RedLabel: TLabel
  24.     Left = 32
  25.     Top = 24
  26.     Width = 30
  27.     Height = 16
  28.     Caption = '&Red:'
  29.     FocusControl = RedEdit
  30.   end
  31.   object GreenLabel: TLabel
  32.     Left = 32
  33.     Top = 56
  34.     Width = 43
  35.     Height = 16
  36.     Caption = '&Green:'
  37.     FocusControl = GreenEdit
  38.   end
  39.   object BlueLabel: TLabel
  40.     Left = 32
  41.     Top = 88
  42.     Width = 34
  43.     Height = 16
  44.     Caption = '&Blue:'
  45.     FocusControl = BlueEdit
  46.   end
  47.   object RedSB: TScrollBar
  48.     Left = 88
  49.     Top = 24
  50.     Width = 121
  51.     Height = 17
  52.     LargeChange = 10
  53.     Max = 255
  54.     TabOrder = 0
  55.     OnChange = SBChange
  56.   end
  57.   object GreenSB: TScrollBar
  58.     Tag = 1
  59.     Left = 88
  60.     Top = 56
  61.     Width = 121
  62.     Height = 17
  63.     LargeChange = 10
  64.     Max = 255
  65.     TabOrder = 2
  66.     OnChange = SBChange
  67.   end
  68.   object BlueSB: TScrollBar
  69.     Tag = 2
  70.     Left = 88
  71.     Top = 88
  72.     Width = 121
  73.     Height = 17
  74.     LargeChange = 10
  75.     Max = 255
  76.     TabOrder = 4
  77.     OnChange = SBChange
  78.   end
  79.   object RedEdit: TEdit
  80.     Left = 224
  81.     Top = 22
  82.     Width = 33
  83.     Height = 21
  84.     Font.Charset = DEFAULT_CHARSET
  85.     Font.Color = clBlack
  86.     Font.Height = -11
  87.     Font.Name = 'MS Sans Serif'
  88.     Font.Style = []
  89.     ParentFont = False
  90.     TabOrder = 1
  91.     Text = '0'
  92.     OnChange = EditChange
  93.   end
  94.   object GreenEdit: TEdit
  95.     Tag = 1
  96.     Left = 224
  97.     Top = 54
  98.     Width = 33
  99.     Height = 21
  100.     Font.Charset = DEFAULT_CHARSET
  101.     Font.Color = clBlack
  102.     Font.Height = -11
  103.     Font.Name = 'MS Sans Serif'
  104.     Font.Style = []
  105.     ParentFont = False
  106.     TabOrder = 3
  107.     Text = '0'
  108.     OnChange = EditChange
  109.   end
  110.   object BlueEdit: TEdit
  111.     Tag = 2
  112.     Left = 224
  113.     Top = 86
  114.     Width = 33
  115.     Height = 21
  116.     Font.Charset = DEFAULT_CHARSET
  117.     Font.Color = clBlack
  118.     Font.Height = -11
  119.     Font.Name = 'MS Sans Serif'
  120.     Font.Style = []
  121.     ParentFont = False
  122.     TabOrder = 5
  123.     Text = '0'
  124.     OnChange = EditChange
  125.   end
  126.   object ColorEdit: TEdit
  127.     Left = 280
  128.     Top = 32
  129.     Width = 73
  130.     Height = 24
  131.     TabStop = False
  132.     Color = clBlack
  133.     Enabled = False
  134.     ReadOnly = True
  135.     TabOrder = 8
  136.   end
  137.   object OkBitBtn: TBitBtn
  138.     Left = 280
  139.     Top = 128
  140.     Width = 89
  141.     Height = 33
  142.     TabOrder = 7
  143.     OnClick = OkBitBtnClick
  144.     Kind = bkOK
  145.   end
  146.   object CancelBitBtn: TBitBtn
  147.     Left = 176
  148.     Top = 128
  149.     Width = 89
  150.     Height = 33
  151.     TabOrder = 6
  152.     OnClick = CancelBitBtnClick
  153.     Kind = bkCancel
  154.   end
  155. end
  156.