?? sgip_server.~dpr
字號:
program SGIP_Server;
uses
ShareMem,
Forms,
Windows,
SPServer in 'SPServer.pas' {frmSGIP},
SP_SMG_DLL in 'SP_SMG_DLL.pas',
SP_SMG_Set in 'SP_SMG_Set.pas' {frmSP_SMG_Set},
SMG_Interface in 'SMG_Interface.pas',
SMG_SendThread in 'SMG_SendThread.pas',
SMG_RecvThread in 'SMG_RecvThread.pas',
SMG_DB in 'SMG_DB.pas' {frmSMGDB: TDataModule},
SMG_ReportThread in 'SMG_ReportThread.pas',
SMG_ClientReadThread in 'SMG_ClientReadThread.pas',
DLL_Exports in 'DLL_Exports.pas',
SMG_TQ in 'SMG_TQ.pas';
{$R *.res}
var
RvHandle : LongWord;
par : string;
begin
RvHandle := FindWindow(scWinClassName, nil);
if RvHandle > 0 then
begin
PostMessage(RvHandle, CM_RESTORE, 0, 0);
Exit;
end;
Application.Initialize;
Application.CreateForm(TfrmSGIP, frmSGIP);
Application.CreateForm(TfrmSMGDB, frmSMGDB);
Application.Title:='短信服務器';
if not GetLocalIP(par)
then begin
ErrorMsg(1,'對不起該系統不能在您的計算機'+#13+#13+#10+
'上運行,請與系統管理員聯系!');
Application.Terminate;
Exit;
end;
Application.Run;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -