home *** CD-ROM | disk | FTP | other *** search
- unit umeta;
-
- interface
-
- uses
- WinTypes,WinProcs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- ExtCtrls;
-
- { Used to show a TeeChart in Metafile format inside a Delphi TImage control }
-
- type
- TFormMeta = class(TForm)
- Image1: TImage;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FormMeta: TFormMeta;
-
- implementation
-
- {$R *.DFM}
-
- end.
-