📄 opeclient.dpr
字号:
program OpeClient;
uses
Forms,
Windows,
Controls,
sys_main in 'sys_main.pas' {FSys_main},
Occp in 'Occp.pas',
Exch in 'Exch.pas' {FExch};
{$R *.res}
var
hWnd_ESPS: hWnd;
begin
hWnd_ESPS := FindWindow('TApplication','话务台');
if hWnd_ESPS>0 then
begin
ShowWindow(hWnd_ESPS, SW_SHOW);
SetForegroundWindow(hWnd_ESPS);
Exit;
end;
Application.Initialize;
Application.Title:='话务台';
Application.CreateForm(TFSys_main, FSys_main);
//Application.CreateForm(TFExch, FExch);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -