L
leo.1999
Unregistered / Unconfirmed
GUEST, unregistred user!
pas下面:
//复制副本,同时运行副本,再关闭自己
begin
if application.exename<> 'd:/1.exe' then
begin
copyfile(pchar(application.exename),pchar('d:/1.exe'),false);
winexec(pchar('d:/1.exe'),sw_hide);//运行WINDOWS下的程序
application.terminate;//退出
dpr下面:
//防止2次运行
const classname='tform1';//注册窗口名
var
handle:integer;
begin
handle:=findwindow(classname,nil);//如果有就自己挂掉自己,及防止2次运行
if handle<>0 then
halt;
-----------------------------------------------------------------------------------
请问上面2个功能怎么兼得?????
每个功能都有用,但加到一起,就不能用了!!!