📄 parseren.~dpr
字号:
program ParserEn;
uses
Forms,
windows,
uParserEn in 'uParserEn.pas' {FrmParseEnWord},
uPublic in '..\Common\uPublic.pas',
uConst in '..\Common\uConst.pas',
uDownFileThread in '..\Common\uDownFileThread.pas',
uParserTypeThread in '..\Common\uParserTypeThread.pas',
uPaserWordThread in '..\Common\uPaserWordThread.pas';
{$R *.res}
var
hMutexA: Cardinal;
begin
hMutexA := CreateMutex(nil, False, 'ParseEn1.0');
if GetLastError = ERROR_ALREADY_EXISTS then
begin
SendMessage(HWND_BROADCAST,RegisterWindowMessage('ParseEn1.0'),0,0);
Application.Terminate;
end
else
begin
Application.Initialize;
Application.CreateForm(TFrmParseEnWord, FrmParseEnWord);
FrmParseEnWord.FShowGlobalMsg := RegisterWindowMessage('ParseEn1.0');
Application.Run;
CloseHandle(hMutexA);
end;//if
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -