?? main.pas
字號:
// FastReport 3 demo
unit Main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Db, DBTables,
OdacVcl, Buttons, frxClass, frxODACComponents, frxDesgn;
type
TForm1 = class(TForm)
Button1: TButton;
BitBtn1: TBitBtn;
frxDesigner1: TfrxDesigner;
frxODACComponents1: TfrxODACComponents;
frxReport1: TfrxReport;
procedure Button1Click(Sender: TObject);
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
begin
frxReport1.DesignReport;
end;
procedure TForm1.BitBtn1Click(Sender: TObject);
begin
frxReport1.ShowReport;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
減小字號
Ctrl + -