home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2002 August / INTERNET94.ISO / pc / software / windows / utils / watznew / setup.exe / 0 / RCDATA / TEDITPARAMETERWINDOW / TEDITPARAMETERWINDOW.txt
Encoding:
Text File  |  2002-05-01  |  1.5 KB  |  82 lines

  1. object EditParameterWindow: TEditParameterWindow
  2.   Left = 418
  3.   Top = 453
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Edit Parameter'
  7.   ClientHeight = 105
  8.   ClientWidth = 321
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Shell Dlg'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 8
  22.     Top = 12
  23.     Width = 48
  24.     Height = 13
  25.     Caption = '&Parameter'
  26.     FocusControl = ParamField
  27.     Transparent = True
  28.   end
  29.   object Label2: TLabel
  30.     Left = 8
  31.     Top = 44
  32.     Width = 27
  33.     Height = 13
  34.     Caption = '&Value'
  35.     FocusControl = ValueField
  36.     Transparent = True
  37.   end
  38.   object OKButton: TButton
  39.     Left = 160
  40.     Top = 72
  41.     Width = 73
  42.     Height = 25
  43.     Caption = '&OK'
  44.     Default = True
  45.     ModalResult = 1
  46.     TabOrder = 2
  47.     OnClick = OKButtonClick
  48.   end
  49.   object ValueField: TEdit
  50.     Left = 80
  51.     Top = 40
  52.     Width = 233
  53.     Height = 21
  54.     AutoSelect = False
  55.     MaxLength = 255
  56.     TabOrder = 1
  57.     OnChange = ParamFieldChange
  58.   end
  59.   object CancelButton: TButton
  60.     Left = 240
  61.     Top = 72
  62.     Width = 73
  63.     Height = 25
  64.     Cancel = True
  65.     Caption = '&Cancel'
  66.     ModalResult = 2
  67.     TabOrder = 3
  68.   end
  69.   object ParamField: TEdit
  70.     Left = 80
  71.     Top = 8
  72.     Width = 233
  73.     Height = 21
  74.     AutoSelect = False
  75.     CharCase = ecUpperCase
  76.     MaxLength = 50
  77.     TabOrder = 0
  78.     OnChange = ParamFieldChange
  79.     OnKeyPress = ParamFieldKeyPress
  80.   end
  81. end
  82.