home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / SOFTWARE / VYZKUSTE / RKEDIT / RKEDIT.EXE / 0 / RCDATA / TFRMASCIITABLE / TFRMASCIITABLE.txt
Text File  |  2003-04-17  |  2KB  |  107 lines

  1. inherited frmASCIITable: TfrmASCIITable
  2.   Left = 1103
  3.   Top = 232
  4.   Width = 144
  5.   Height = 259
  6.   BorderStyle = bsSizeToolWin
  7.   Caption = 'ASCII Table'
  8.   Color = clBtnFace
  9.   Constraints.MaxWidth = 144
  10.   Constraints.MinHeight = 108
  11.   Constraints.MinWidth = 144
  12.   Font.Charset = DEFAULT_CHARSET
  13.   Font.Color = clWindowText
  14.   Font.Height = -11
  15.   Font.Name = 'MS Sans Serif'
  16.   Font.Style = []
  17.   FormStyle = fsStayOnTop
  18.   KeyPreview = True
  19.   OldCreateOrder = False
  20.   Position = poDefault
  21.   OnCreate = FormCreate
  22.   OnKeyDown = FormKeyDown
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object lvAscii: TListView
  26.     Left = 0
  27.     Top = 0
  28.     Width = 136
  29.     Height = 191
  30.     Align = alClient
  31.     Columns = <
  32.       item
  33.         Caption = 'Char'
  34.         MaxWidth = 40
  35.         MinWidth = 40
  36.         Width = 40
  37.       end
  38.       item
  39.         Caption = 'Dec'
  40.         MaxWidth = 35
  41.         MinWidth = 35
  42.         Width = 35
  43.       end
  44.       item
  45.         Caption = 'Hex'
  46.         MaxWidth = 40
  47.         MinWidth = 40
  48.         Width = 40
  49.       end>
  50.     GridLines = True
  51.     HideSelection = False
  52.     ReadOnly = True
  53.     RowSelect = True
  54.     PopupMenu = PopupMenu1
  55.     TabOrder = 0
  56.     ViewStyle = vsReport
  57.     OnChange = lvAsciiChange
  58.     OnDblClick = lvAsciiDblClick
  59.     OnKeyPress = lvAsciiKeyPress
  60.   end
  61.   object Panel1: TPanel
  62.     Left = 0
  63.     Top = 191
  64.     Width = 136
  65.     Height = 41
  66.     Align = alBottom
  67.     TabOrder = 1
  68.     object lblChar: TLabel
  69.       Left = 8
  70.       Top = 6
  71.       Width = 24
  72.       Height = 32
  73.       Caption = 'M'
  74.       Font.Charset = DEFAULT_CHARSET
  75.       Font.Color = clWindowText
  76.       Font.Height = -27
  77.       Font.Name = 'MS Sans Serif'
  78.       Font.Style = [fsBold]
  79.       ParentFont = False
  80.     end
  81.   end
  82.   object PopupMenu1: TPopupMenu
  83.     Left = 32
  84.     Top = 56
  85.     object actAlwaysOnTop1: TMenuItem
  86.       Action = actAlwaysOnTop
  87.     end
  88.     object actCopyCurrentCharToActiveEdit1: TMenuItem
  89.       Action = actCopyCurrentCharToActiveEdit
  90.     end
  91.   end
  92.   object ActionList1: TActionList
  93.     Left = 32
  94.     Top = 104
  95.     object actAlwaysOnTop: TAction
  96.       Caption = 'Always on top'
  97.       OnExecute = actAlwaysOnTopExecute
  98.     end
  99.     object actCopyCurrentCharToActiveEdit: TAction
  100.       Caption = 'Copy current char to active edit'
  101.       ShortCut = 13
  102.       OnExecute = actCopyCurrentCharToActiveEditExecute
  103.       OnUpdate = actCopyCurrentCharToActiveEditUpdate
  104.     end
  105.   end
  106. end
  107.