⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parseren.~dpr

📁 这是一个从指定网页格式分离单词的小程序
💻 ~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 + -