?? aboutunit.pas
字號:
//*-----------------------------------------------------------------------------
//* 系統名稱:數據自動備份系統
//* 作 者:陳春華
//* 開發時間:2005
//* Windows2000 Server + SQL Server2000 + Delphi7
//* 功能簡介:
//* 軟件可自動完成SQL Server數據庫和文檔的數據定時自動備份,
//* 由用戶選擇對哪些數據庫或文檔進行數據備份,提供對備份、還原
//* 數據作業的管理、分析、日志跟蹤等功能,備份頻率不受限制。
//*-----------------------------------------------------------------------------
unit AboutUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
Tabout = class(TForm)
Image1: TImage;
Panel1: TPanel;
Button1: TButton;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
about: Tabout;
implementation
{$R *.dfm}
procedure Tabout.Button1Click(Sender: TObject);
begin
close;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -