home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Utilitare / xvi / XVI32.exe / 0 / RCDATA / TFORMENCODE / TFORMENCODE.txt
Text File  |  2003-08-02  |  3KB  |  155 lines

  1. object FormEncode: TFormEncode
  2.   Left = 300
  3.   Top = 170
  4.   BorderIcons = [biSystemMenu, biHelp]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Encode number'
  7.   ClientHeight = 271
  8.   ClientWidth = 423
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object GroupBox1: TGroupBox
  18.     Left = 10
  19.     Top = 10
  20.     Width = 196
  21.     Height = 211
  22.     Caption = 'Encode'
  23.     TabOrder = 0
  24.     object Label1: TLabel
  25.       Left = 10
  26.       Top = 20
  27.       Width = 40
  28.       Height = 13
  29.       Caption = '&Number:'
  30.     end
  31.     object CMHistoryBtnEnc: TCMHistoryBtn
  32.       Left = 166
  33.       Top = 13
  34.       Width = 18
  35.       Height = 21
  36.       Caption = '6'
  37.       Font.Color = clWindowText
  38.       Font.Height = -12
  39.       Font.Name = 'Marlett'
  40.       Font.Style = []
  41.       ParentFont = False
  42.       IniSection = 'CMHistoryEnc'
  43.       Edit = EditNumber
  44.     end
  45.     object RadioGroupAs: TRadioGroup
  46.       Left = 10
  47.       Top = 41
  48.       Width = 176
  49.       Height = 159
  50.       HelpContext = 30
  51.       Caption = 'as'
  52.       ItemIndex = 0
  53.       Items.Strings = (
  54.         '&shortint (1 byte)'
  55.         '&byte (1 byte)'
  56.         '&word (2 bytes)'
  57.         '&integer (2 bytes)'
  58.         '&longint (4 bytes)'
  59.         '&32 bit IEEE single'
  60.         '&64 bit IEEE double')
  61.       TabOrder = 1
  62.     end
  63.     object EditNumber: TEdit
  64.       Left = 60
  65.       Top = 13
  66.       Width = 106
  67.       Height = 21
  68.       TabOrder = 0
  69.     end
  70.   end
  71.   object GroupBox2: TGroupBox
  72.     Left = 220
  73.     Top = 10
  74.     Width = 191
  75.     Height = 211
  76.     HelpContext = 31
  77.     Caption = 'Output'
  78.     TabOrder = 1
  79.     object LabelByteOrder: TLabel
  80.       Left = 10
  81.       Top = 20
  82.       Width = 73
  83.       Height = 13
  84.       Caption = 'LabelByteOrder'
  85.     end
  86.     object CMRadioBtnInsert: TCMRadioBtn
  87.       Left = 10
  88.       Top = 45
  89.       Width = 166
  90.       Height = 17
  91.       Caption = 'Ins&ert before current adress'
  92.       Checked = True
  93.       TabOrder = 0
  94.       TabStop = True
  95.     end
  96.     object CMRadioBtnOver: TCMRadioBtn
  97.       Left = 10
  98.       Top = 75
  99.       Width = 161
  100.       Height = 17
  101.       Caption = '&Overwrite at current adress'
  102.       TabOrder = 1
  103.     end
  104.     object CMRadioBtnHere: TCMRadioBtn
  105.       Left = 10
  106.       Top = 105
  107.       Width = 113
  108.       Height = 17
  109.       Caption = '&Here'
  110.       TabOrder = 2
  111.       Control = EditHere
  112.     end
  113.     object EditHere: TEdit
  114.       Left = 25
  115.       Top = 130
  116.       Width = 140
  117.       Height = 21
  118.       Color = clBtnFace
  119.       Enabled = False
  120.       ReadOnly = True
  121.       TabOrder = 3
  122.     end
  123.   end
  124.   object ButtonOK: TButton
  125.     Left = 10
  126.     Top = 234
  127.     Width = 75
  128.     Height = 25
  129.     Caption = 'OK'
  130.     Default = True
  131.     ModalResult = 1
  132.     TabOrder = 2
  133.     OnClick = ButtonOKClick
  134.   end
  135.   object ButtonCancel: TButton
  136.     Left = 115
  137.     Top = 234
  138.     Width = 75
  139.     Height = 25
  140.     Cancel = True
  141.     Caption = 'Cancel'
  142.     ModalResult = 2
  143.     TabOrder = 3
  144.   end
  145.   object ButtonHelp: TButton
  146.     Left = 220
  147.     Top = 234
  148.     Width = 75
  149.     Height = 25
  150.     Caption = 'Help'
  151.     TabOrder = 4
  152.     OnClick = ButtonHelpClick
  153.   end
  154. end
  155.