?? qrabout.pas
字號:
{ :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: QuickReport 4.0 for Delphi and C++Builder ::
:: ::
:: QRAbout.PAS - QuickReport About box with registration ::
:: ::
:: Copyright (c) 2001 A Lochert ::
:: All Rights Reserved ::
:: ::
:: web: http://www.qusoft.com ::
:: ::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: }
{$I QRDEFS.INC}
unit QRAbout;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, OleCtrls, ShellAPI;
type
{ TQRAboutbox, About box with registration form and services }
TQRAboutBox = class(TForm)
Button1: TButton;
Label1: TLabel;
Label2: TLabel;
VisitLabel: TLabel;
Label3: TLabel;
Bevel1: TBevel;
Label5: TLabel;
Image2: TImage;
Shape1: TShape;
Image3: TImage;
Label4: TLabel;
Image1: TImage;
procedure Button3Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Label3Click(Sender: TObject);
end;
implementation
{$R *.DFM}
uses QR4Const;
{ TQRAboutBox }
procedure TQRAboutBox.Button3Click(Sender: TObject);
begin
Close;
end;
procedure TQRAboutBox.FormCreate(Sender: TObject);
begin
{$ifndef EvalVersion}
VisitLabel.Caption := SqrAboutInfo;
{$endif}
Label3.Cursor := crHandPoint;
end;
procedure TQRAboutBox.Label3Click(Sender: TObject);
const
QuSoftPage = 'www.qbss.com';
begin
ShellExecute(Handle, 'open', QuSoftPage, nil, nil, SW_SHOW);
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -