home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk12 / lib.pak / PROCDLG.DFM / PROCDLG.txt
Encoding:
Text File  |  1995-08-24  |  3.2 KB  |  163 lines

  1. object ProcParams: TProcParams
  2.   Left = 240
  3.   Top = 106
  4.   ActiveControl = ParamList
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Stored Procedure'
  8.   ClientHeight = 226
  9.   ClientWidth = 378
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = [fsBold]
  14.   PixelsPerInch = 96
  15.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   TextHeight = 13
  18.   object GroupBox1: TGroupBox
  19.     Left = 7
  20.     Top = 4
  21.     Width = 365
  22.     Height = 176
  23.     Caption = 'Define Parameters'
  24.     TabOrder = 0
  25.     object Label1: TLabel
  26.       Left = 8
  27.       Top = 20
  28.       Width = 96
  29.       Height = 13
  30.       Caption = '&Parameter name:'
  31.       FocusControl = ParamList
  32.     end
  33.     object Label2: TLabel
  34.       Left = 147
  35.       Top = 86
  36.       Width = 37
  37.       Height = 13
  38.       Caption = '&Value:'
  39.       FocusControl = ParamValue
  40.     end
  41.     object Label3: TLabel
  42.       Left = 147
  43.       Top = 63
  44.       Width = 60
  45.       Height = 13
  46.       Caption = 'Data t&ype:'
  47.       FocusControl = TypeList
  48.     end
  49.     object Label4: TLabel
  50.       Left = 147
  51.       Top = 38
  52.       Width = 90
  53.       Height = 13
  54.       Caption = 'Parameter &type:'
  55.       FocusControl = ParamTypeList
  56.     end
  57.     object ParamValue: TEdit
  58.       Left = 244
  59.       Top = 85
  60.       Width = 110
  61.       Height = 20
  62.       TabOrder = 3
  63.       OnExit = ParamValueExit
  64.     end
  65.     object NullValue: TCheckBox
  66.       Left = 147
  67.       Top = 111
  68.       Width = 79
  69.       Height = 17
  70.       Caption = '&Null Value'
  71.       TabOrder = 4
  72.       OnClick = NullValueClick
  73.     end
  74.     object TypeList: TComboBox
  75.       Left = 244
  76.       Top = 60
  77.       Width = 110
  78.       Height = 20
  79.       Style = csDropDownList
  80.       ItemHeight = 13
  81.       Sorted = True
  82.       TabOrder = 2
  83.       OnChange = TypeListChange
  84.     end
  85.     object ParamTypeList: TComboBox
  86.       Left = 244
  87.       Top = 35
  88.       Width = 110
  89.       Height = 20
  90.       Style = csDropDownList
  91.       ItemHeight = 13
  92.       Sorted = True
  93.       TabOrder = 1
  94.       OnChange = ParamTypeListChange
  95.     end
  96.     object ParamList: TListBox
  97.       Left = 8
  98.       Top = 35
  99.       Width = 119
  100.       Height = 93
  101.       ItemHeight = 13
  102.       Sorted = True
  103.       TabOrder = 0
  104.       OnClick = ParamListChange
  105.     end
  106.     object AddButton: TBitBtn
  107.       Left = 54
  108.       Top = 138
  109.       Width = 77
  110.       Height = 27
  111.       Caption = '&Add'
  112.       Enabled = False
  113.       TabOrder = 5
  114.       OnClick = AddButtonClick
  115.     end
  116.     object DeleteButton: TBitBtn
  117.       Left = 143
  118.       Top = 138
  119.       Width = 77
  120.       Height = 27
  121.       Caption = '&Delete'
  122.       Enabled = False
  123.       TabOrder = 6
  124.       OnClick = DeleteButtonClick
  125.     end
  126.     object ClearButton: TBitBtn
  127.       Left = 234
  128.       Top = 138
  129.       Width = 77
  130.       Height = 27
  131.       Caption = '&Clear'
  132.       Enabled = False
  133.       TabOrder = 7
  134.       OnClick = ClearButtonClick
  135.     end
  136.   end
  137.   object OkBtn: TBitBtn
  138.     Left = 67
  139.     Top = 189
  140.     Width = 77
  141.     Height = 27
  142.     TabOrder = 1
  143.     OnClick = OkBtnClick
  144.     Kind = bkOK
  145.   end
  146.   object CancelBtn: TBitBtn
  147.     Left = 151
  148.     Top = 189
  149.     Width = 77
  150.     Height = 27
  151.     TabOrder = 2
  152.     Kind = bkCancel
  153.   end
  154.   object HelpBtn: TBitBtn
  155.     Left = 235
  156.     Top = 189
  157.     Width = 77
  158.     Height = 27
  159.     TabOrder = 3
  160.     Kind = bkHelp
  161.   end
  162. end
  163.