home *** CD-ROM | disk | FTP | other *** search
- unit Unit2;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Grids, mxgrid, mxDB, Db, DBTables, mxtables, mxstore, mxpivsrc, ExtCtrls,
- StdCtrls, PrintDecisionGrid, UExpExcel;
-
- type
- TDCDemoForm = class(TForm)
- Panel1: TPanel;
- DecisionPivot1: TDecisionPivot;
- DecisionCube1: TDecisionCube;
- DecisionQuery1: TDecisionQuery;
- DecisionSource1: TDecisionSource;
- DecisionGrid1: TDecisionGrid;
- Pdg: TPrintDecisionGrid;
- Button1: TButton;
- Button2: TButton;
- Excel: TExpExcel;
- procedure Button1Click(Sender: TObject);
- procedure Button2Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- DCDemoForm: TDCDemoForm;
-
- implementation
-
- {$R *.DFM}
-
- procedure TDCDemoForm.Button1Click(Sender: TObject);
- begin
- pdg.preview ;
- end;
-
- procedure TDCDemoForm.Button2Click(Sender: TObject);
- begin
- excel.ExportToExcel;
- end;
-
- end.
-