?? recover.dpr
字號:
program recover;
uses
Forms,
windows,
start1 in 'start1.pas' {start};
{$R *.res}
begin
createsemaphore(nil,1,1,'my');
if getlasterror()=ERROR_ALREADY_EXISTS then
begin
application.MessageBox('職工工資管理系統正在運行,請關閉之然后再進行數據恢復!','信息',mb_ok+mb_iconinformation);
exit;
end;
Application.Initialize;
Application.CreateForm(Tstart, start);
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -