home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / Chip_2002-10_cd1.bin / zkuste / delphi / kolekce / d56 / FLEXCEL.ZIP / BiffEdit / UEscherEdit.dfm < prev    next >
Text File  |  2002-05-13  |  3KB  |  134 lines

  1. inherited EscherEdit: TEscherEdit
  2.   Width = 744
  3.   Height = 399
  4.   Caption = 'Escher Edit'
  5.   OldCreateOrder = True
  6.   Position = poDefault
  7.   PixelsPerInch = 96
  8.   TextHeight = 13
  9.   inherited Splitter1: TSplitter
  10.     Top = 350
  11.     Width = 736
  12.   end
  13.   inherited ToolBar: TToolBar
  14.     Width = 736
  15.     inherited btnOpen: TToolButton
  16.       Action = ActionOk
  17.     end
  18.     inherited btnSaveAs: TToolButton
  19.       Action = ActionCancel
  20.     end
  21.   end
  22.   inherited ListRecords: TListView
  23.     Top = 65
  24.     Width = 736
  25.     Height = 196
  26.     Columns = <
  27.       item
  28.         Caption = 'Id Name'
  29.         Width = 100
  30.       end
  31.       item
  32.         Caption = 'Id'
  33.       end
  34.       item
  35.         Caption = 'Version'
  36.         Width = 70
  37.       end
  38.       item
  39.         Caption = 'Size'
  40.       end
  41.       item
  42.         Caption = 'Stream Ofs'
  43.         Width = 80
  44.       end
  45.       item
  46.         Caption = 'Data'
  47.         Width = 150
  48.       end
  49.       item
  50.         Caption = 'Hex'
  51.         Width = 500
  52.       end>
  53.     OnGetImageIndex = ListRecordsGetImageIndex
  54.   end
  55.   inherited StatusBar: TStatusBar
  56.     Top = 353
  57.     Width = 736
  58.   end
  59.   object PanelVersion: TPanel [4]
  60.     Left = 0
  61.     Top = 38
  62.     Width = 736
  63.     Height = 27
  64.     Align = alTop
  65.     Color = clActiveCaption
  66.     TabOrder = 3
  67.     object Label1: TLabel
  68.       Left = 331
  69.       Top = 7
  70.       Width = 122
  71.       Height = 13
  72.       Caption = 'Record Version/Instance:'
  73.       Color = clActiveCaption
  74.       Font.Charset = DEFAULT_CHARSET
  75.       Font.Color = clCaptionText
  76.       Font.Height = -11
  77.       Font.Name = 'MS Sans Serif'
  78.       Font.Style = []
  79.       ParentColor = False
  80.       ParentFont = False
  81.     end
  82.     object Label2: TLabel
  83.       Left = 14
  84.       Top = 7
  85.       Width = 61
  86.       Height = 13
  87.       Caption = 'Record Size:'
  88.       Color = clActiveCaption
  89.       Font.Charset = DEFAULT_CHARSET
  90.       Font.Color = clCaptionText
  91.       Font.Height = -11
  92.       Font.Name = 'MS Sans Serif'
  93.       Font.Style = []
  94.       ParentColor = False
  95.       ParentFont = False
  96.     end
  97.     object edInstance: TEdit
  98.       Left = 459
  99.       Top = 3
  100.       Width = 30
  101.       Height = 21
  102.       MaxLength = 2
  103.       TabOrder = 0
  104.     end
  105.     object edSize: TEdit
  106.       Left = 79
  107.       Top = 3
  108.       Width = 65
  109.       Height = 21
  110.       MaxLength = 20
  111.       TabOrder = 1
  112.     end
  113.   end
  114.   inherited edHex: TRichEdit
  115.     Top = 261
  116.     Width = 736
  117.     TabOrder = 4
  118.   end
  119.   inherited ActionList: TActionList
  120.     object ActionOk: TAction
  121.       Category = 'File'
  122.       Caption = 'Ok'
  123.       ImageIndex = 11
  124.       OnExecute = ActionOkExecute
  125.     end
  126.     object ActionCancel: TAction
  127.       Category = 'File'
  128.       Caption = 'Cancel'
  129.       ImageIndex = 12
  130.       OnExecute = ActionCancelExecute
  131.     end
  132.   end
  133. end
  134.