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

  1. inherited Main: TMain
  2.   OldCreateOrder = True
  3.   PixelsPerInch = 96
  4.   TextHeight = 13
  5.   inherited ToolBar: TToolBar
  6.     Height = 40
  7.     EdgeBorders = [ebTop, ebBottom]
  8.     inherited btnOpen: TToolButton
  9.       Action = ActionOpen
  10.     end
  11.     inherited btnSaveAs: TToolButton
  12.       Action = ActionSaveAs
  13.     end
  14.   end
  15.   inherited ListRecords: TListView
  16.     Top = 67
  17.     Height = 275
  18.     OnGetImageIndex = ListRecordsGetImageIndex
  19.   end
  20.   inherited edHex: TRichEdit
  21.     TabOrder = 3
  22.   end
  23.   object Panel1: TPanel [5]
  24.     Left = 0
  25.     Top = 40
  26.     Width = 752
  27.     Height = 27
  28.     Align = alTop
  29.     BevelOuter = bvLowered
  30.     TabOrder = 4
  31.     object Label1: TLabel
  32.       Left = 8
  33.       Top = 8
  34.       Width = 36
  35.       Height = 13
  36.       Caption = 'Stream:'
  37.     end
  38.     object cbStream: TComboBox
  39.       Left = 49
  40.       Top = 3
  41.       Width = 680
  42.       Height = 21
  43.       Style = csDropDownList
  44.       Anchors = [akLeft, akTop, akRight]
  45.       ItemHeight = 13
  46.       TabOrder = 0
  47.       OnChange = cbStreamChange
  48.     end
  49.   end
  50.   inherited ActionList: TActionList
  51.     object ActionOpen: TAction
  52.       Category = 'File'
  53.       Caption = '&Open'
  54.       Hint = 'Open a new excel file'
  55.       ImageIndex = 0
  56.       ShortCut = 16463
  57.       OnExecute = ActionOpenExecute
  58.     end
  59.     object ActionSaveAs: TAction
  60.       Category = 'File'
  61.       Caption = 'Save As'
  62.       Hint = 'Save the changes as another excel file'
  63.       ImageIndex = 2
  64.       ShortCut = 16467
  65.       OnExecute = ActionSaveAsExecute
  66.       OnUpdate = ActionSaveAsUpdate
  67.     end
  68.   end
  69.   object OpenDialog: TOpenDialog [8]
  70.     Filter = 'Excel files|*.xls'
  71.     Title = 'Open Excel file'
  72.     Left = 88
  73.     Top = 120
  74.   end
  75.   object SaveDialog: TSaveDialog [9]
  76.     DefaultExt = 'xls'
  77.     Filter = 'Biff8 Excel files|*.xls'
  78.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  79.     Title = 'Export data to file'
  80.     Left = 216
  81.     Top = 120
  82.   end
  83. end
  84.