home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / sharewar / devilpad / htmlpad.exe / HTMLPad.exe / 0 / RCDATA / TFRMINSERTFORM / TFRMINSERTFORM.txt
Encoding:
Text File  |  2001-06-24  |  2.1 KB  |  110 lines

  1. object frmInsertForm: TfrmInsertForm
  2.   Left = 413
  3.   Top = 287
  4.   BorderStyle = bsDialog
  5.   Caption = 'Insert Form'
  6.   ClientHeight = 133
  7.   ClientWidth = 331
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   Position = poScreenCenter
  16.   OnClose = FormClose
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object btnOK: TButton
  21.     Left = 171
  22.     Top = 106
  23.     Width = 75
  24.     Height = 25
  25.     Caption = 'OK'
  26.     Default = True
  27.     TabOrder = 0
  28.     OnClick = btnOKClick
  29.   end
  30.   object btnStorno: TButton
  31.     Left = 251
  32.     Top = 106
  33.     Width = 75
  34.     Height = 25
  35.     Cancel = True
  36.     Caption = 'Storno'
  37.     TabOrder = 1
  38.     OnClick = btnStornoClick
  39.   end
  40.   object GroupBox1: TGroupBox
  41.     Left = 5
  42.     Top = 2
  43.     Width = 321
  44.     Height = 100
  45.     TabOrder = 2
  46.     object Label1: TLabel
  47.       Left = 7
  48.       Top = 18
  49.       Width = 33
  50.       Height = 13
  51.       Caption = 'Action:'
  52.     end
  53.     object Label2: TLabel
  54.       Left = 7
  55.       Top = 45
  56.       Width = 46
  57.       Height = 13
  58.       Caption = 'EncType:'
  59.     end
  60.     object Label3: TLabel
  61.       Left = 7
  62.       Top = 72
  63.       Width = 39
  64.       Height = 13
  65.       Caption = 'Method:'
  66.     end
  67.     object cmbAction: TComboBox
  68.       Left = 62
  69.       Top = 15
  70.       Width = 250
  71.       Height = 21
  72.       Hint = 'ACTION'
  73.       ItemHeight = 13
  74.       TabOrder = 0
  75.       OnEnter = cmbActionEnter
  76.       OnExit = cmbActionExit
  77.     end
  78.     object cmbEncType: TComboBox
  79.       Left = 62
  80.       Top = 42
  81.       Width = 250
  82.       Height = 21
  83.       Hint = 'ENCTYPE'
  84.       ItemHeight = 13
  85.       TabOrder = 1
  86.       OnEnter = cmbEncTypeEnter
  87.       OnExit = cmbEncTypeExit
  88.       Items.Strings = (
  89.         'application/x-www-form-urlencoded'
  90.         'multipart/form-data')
  91.     end
  92.     object cmbMethod: TComboBox
  93.       Left = 62
  94.       Top = 68
  95.       Width = 99
  96.       Height = 21
  97.       Hint = 'METHOD'
  98.       ItemHeight = 13
  99.       TabOrder = 2
  100.       Text = 'post'
  101.       OnEnter = cmbMethodEnter
  102.       OnExit = cmbMethodExit
  103.       Items.Strings = (
  104.         ''
  105.         'post'
  106.         'get')
  107.     end
  108.   end
  109. end
  110.