标签: 禁止
thumbnail

Delphi 禁止重复运行程序的方法

第一种方法,使用“过程调用” procedure Del; // 自定义过程 var Mutex: THandle; begin Mutex := CreateMutex(nil, True, PChar(Application.Title));……