home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / OTHER / SAVELOAD / UTEESAVE.DFM / UTEESAVE.txt
Encoding:
Text File  |  1998-10-24  |  2.8 KB  |  137 lines

  1. object FormVirtual: TFormVirtual
  2.   Left = 123
  3.   Top = 100
  4.   Width = 604
  5.   Height = 411
  6.   ActiveControl = FileListBox1
  7.   Caption = 'TeeChart Pro v4 --- Saving and Loading Charts Example'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   TextHeight = 13
  16.   object Panel1: TPanel
  17.     Left = 0
  18.     Top = 0
  19.     Width = 596
  20.     Height = 57
  21.     Align = alTop
  22.     TabOrder = 0
  23.     object Label1: TLabel
  24.       Left = 16
  25.       Top = 40
  26.       Width = 362
  27.       Height = 13
  28.       Caption = 
  29.         'Select and double-click a *.TEE file below...   Double click the' +
  30.         ' Chart to edit...'
  31.     end
  32.     object Button1: TButton
  33.       Left = 16
  34.       Top = 8
  35.       Width = 75
  36.       Height = 25
  37.       Caption = '&Edit...'
  38.       TabOrder = 0
  39.       OnClick = Button1Click
  40.     end
  41.     object ButtonSave: TButton
  42.       Left = 112
  43.       Top = 8
  44.       Width = 75
  45.       Height = 25
  46.       Caption = '&Save'
  47.       Enabled = False
  48.       TabOrder = 1
  49.       OnClick = ButtonSaveClick
  50.     end
  51.     object ButtonSaveAs: TButton
  52.       Left = 208
  53.       Top = 8
  54.       Width = 75
  55.       Height = 25
  56.       Caption = 'Save &As...'
  57.       Enabled = False
  58.       TabOrder = 2
  59.       OnClick = ButtonSaveAsClick
  60.     end
  61.     object Button3: TButton
  62.       Left = 504
  63.       Top = 8
  64.       Width = 75
  65.       Height = 25
  66.       Caption = 'Close'
  67.       TabOrder = 3
  68.       OnClick = Button3Click
  69.     end
  70.     object ButtonUnZoom: TButton
  71.       Left = 304
  72.       Top = 8
  73.       Width = 75
  74.       Height = 25
  75.       Caption = '&UnZoom'
  76.       TabOrder = 4
  77.       OnClick = ButtonUnZoomClick
  78.     end
  79.   end
  80.   object Panel2: TPanel
  81.     Left = 0
  82.     Top = 57
  83.     Width = 217
  84.     Height = 327
  85.     Align = alLeft
  86.     TabOrder = 1
  87.     object FileListBox1: TFileListBox
  88.       Left = 1
  89.       Top = 137
  90.       Width = 215
  91.       Height = 189
  92.       Align = alClient
  93.       ItemHeight = 13
  94.       Mask = '*.tee'
  95.       TabOrder = 0
  96.       OnDblClick = FileListBox1DblClick
  97.     end
  98.     object DirectoryListBox1: TDirectoryListBox
  99.       Left = 1
  100.       Top = 1
  101.       Width = 215
  102.       Height = 128
  103.       Align = alTop
  104.       FileList = FileListBox1
  105.       ItemHeight = 16
  106.       TabOrder = 1
  107.     end
  108.     object Panel3: TPanel
  109.       Left = 1
  110.       Top = 129
  111.       Width = 215
  112.       Height = 8
  113.       Align = alTop
  114.       TabOrder = 2
  115.     end
  116.   end
  117.   object Chart1: TChart
  118.     Left = 217
  119.     Top = 57
  120.     Width = 379
  121.     Height = 327
  122.     BackWall.Brush.Color = clWhite
  123.     BackWall.Brush.Style = bsClear
  124.     Title.Text.Strings = (
  125.       'TChart')
  126.     OnScroll = Chart1Scroll
  127.     OnZoom = Chart1Zoom
  128.     BottomAxis.EndPosition = 100.000000000000000000
  129.     LeftAxis.EndPosition = 100.000000000000000000
  130.     RightAxis.EndPosition = 100.000000000000000000
  131.     TopAxis.EndPosition = 100.000000000000000000
  132.     Align = alClient
  133.     TabOrder = 2
  134.     OnDblClick = Chart1DblClick
  135.   end
  136. end
  137.