home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Lib / TEEXPORT.DFM / TEEXPORT.txt
Encoding:
Text File  |  1999-08-11  |  1.4 KB  |  67 lines

  1. object TeeExportForm: TTeeExportForm
  2.   Left = 230
  3.   Top = 162
  4.   ActiveControl = RGFormat
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Export TeeChart'
  8.   ClientHeight = 137
  9.   ClientWidth = 339
  10.   ParentFont = True
  11.   Position = poScreenCenter
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object Button1: TButton
  16.     Left = 216
  17.     Top = 10
  18.     Width = 118
  19.     Height = 30
  20.     Caption = '&Copy to Clipboard'
  21.     TabOrder = 1
  22.     OnClick = Button1Click
  23.   end
  24.   object Button2: TButton
  25.     Left = 216
  26.     Top = 56
  27.     Width = 118
  28.     Height = 30
  29.     Caption = '&Save To File...'
  30.     TabOrder = 2
  31.     OnClick = Button2Click
  32.   end
  33.   object RGFormat: TRadioGroup
  34.     Left = 4
  35.     Top = 4
  36.     Width = 205
  37.     Height = 129
  38.     Caption = 'Format'
  39.     ItemIndex = 0
  40.     Items.Strings = (
  41.       'as &Bitmap (BMP)'
  42.       'as &Metafile (WMF)'
  43.       'as &Enhanced Metafile (EMF)'
  44.       'as *.&TEE file (TEE)')
  45.     TabOrder = 0
  46.     OnClick = RGFormatClick
  47.   end
  48.   object Button3: TButton
  49.     Left = 216
  50.     Top = 103
  51.     Width = 118
  52.     Height = 30
  53.     Cancel = True
  54.     Caption = 'Close'
  55.     ModalResult = 1
  56.     TabOrder = 3
  57.   end
  58.   object SaveDialog1: TSaveDialog
  59.     Filter = 
  60.       'Bitmap files|*.BMP|Metafile files|*.WMF|Enhanced Metafile files|' +
  61.       '*.EMF|Tee Native files|*.TEE'
  62.     Options = [ofOverwritePrompt, ofHideReadOnly]
  63.     Left = 136
  64.     Top = 4
  65.   end
  66. end
  67.