home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / delphi / ODA10 / _SETUP.1 / Param.dfm / Param.txt
Encoding:
Text File  |  1995-10-23  |  1.9 KB  |  114 lines

  1. object ParamForm: TParamForm
  2.   Left = 349
  3.   Top = 177
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Parameter Input'
  7.   ClientHeight = 172
  8.   ClientWidth = 267
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Label1: TLabel
  16.     Left = 16
  17.     Top = 48
  18.     Width = 27
  19.     Height = 13
  20.     Caption = '&Type:'
  21.     FocusControl = ParamType
  22.   end
  23.   object Label2: TLabel
  24.     Left = 16
  25.     Top = 76
  26.     Width = 30
  27.     Height = 13
  28.     Caption = '&Value:'
  29.     FocusControl = ParamValue
  30.   end
  31.   object ParamName: TLabel
  32.     Left = 16
  33.     Top = 12
  34.     Width = 189
  35.     Height = 13
  36.     Caption = 'ParamName'
  37.     Font.Color = clBlack
  38.     Font.Height = -11
  39.     Font.Name = 'MS Sans Serif'
  40.     Font.Style = [fsBold]
  41.     ParentFont = False
  42.   end
  43.   object Bevel1: TBevel
  44.     Left = 16
  45.     Top = 32
  46.     Width = 241
  47.     Height = 9
  48.     Shape = bsTopLine
  49.   end
  50.   object ParamType: TComboBox
  51.     Left = 64
  52.     Top = 44
  53.     Width = 193
  54.     Height = 21
  55.     Style = csDropDownList
  56.     ItemHeight = 13
  57.     Items.Strings = (
  58.       'unkown'
  59.       'string'
  60.       'small'
  61.       'integer'
  62.       'word'
  63.       'boolean'
  64.       'float'
  65.       'currency'
  66.       'bcd'
  67.       'date'
  68.       'time'
  69.       'datetime'
  70.       'bytes'
  71.       'varbytes'
  72.       'blob'
  73.       'memo'
  74.       'graphic')
  75.     TabOrder = 0
  76.   end
  77.   object ParamValue: TEdit
  78.     Left = 64
  79.     Top = 72
  80.     Width = 193
  81.     Height = 21
  82.     TabOrder = 1
  83.     OnChange = ParamValueChange
  84.   end
  85.   object OkBtn: TButton
  86.     Left = 12
  87.     Top = 140
  88.     Width = 89
  89.     Height = 25
  90.     Caption = '&Ok'
  91.     Default = True
  92.     ModalResult = 1
  93.     TabOrder = 3
  94.   end
  95.   object CancelBtn: TButton
  96.     Left = 168
  97.     Top = 140
  98.     Width = 89
  99.     Height = 25
  100.     Cancel = True
  101.     Caption = '&Cancel'
  102.     ModalResult = 2
  103.     TabOrder = 4
  104.   end
  105.   object ParamNull: TCheckBox
  106.     Left = 64
  107.     Top = 100
  108.     Width = 97
  109.     Height = 17
  110.     Caption = '&Null'
  111.     TabOrder = 2
  112.   end
  113. end
  114.