⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reportabout.pas

📁 pasa人力资源考勤管理系统
💻 PAS
字号:
unit reportabout;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  jpeg, ExtCtrls, StdCtrls, Buttons;

type
  TFormreportabout = class(TForm)
    spbOK: TSpeedButton;
    lblCopyRight: TLabel;
    lblDisclaimer: TLabel;
    Shape1: TShape;
    Shape2: TShape;
    lblReportBuilder1: TLabel;
    lblTrademarkSymbol2: TLabel;
    lblCopyRightSymbol1: TLabel;
    lblTrademarkSymbol1: TLabel;
    lblVersion: TLabel;
    lblEdition: TLabel;
    ProgramIcon: TImage;
    Label1: TLabel;
    procedure spbOKClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Formreportabout: TFormreportabout;

implementation

{$R *.DFM}

procedure TFormreportabout.spbOKClick(Sender: TObject);
begin
  ModalResult := mrOK;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -