I ilook Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-23 #3 winexec('c:/windows/calc.exe',ERROR_BAD_FORMAT); []
H huafann Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-23 #4 楼上的代码在哪里添加呢 我在BUTTON的CLICK里加,什么都没有呀 []是什么呀
C caffen Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-23 #5 winexec('c:/winnt/system32/calc.exe',sw_show); 路径不同的系统不一样,判断一下吧, 也可以简单一点 如if FileExists('c:/winnt/system32/calc.exe') then winexec('c:/winnt/system32/calc.exe',sw_show) else winexec('c:/windows/calc.exe',sw_show);
winexec('c:/winnt/system32/calc.exe',sw_show); 路径不同的系统不一样,判断一下吧, 也可以简单一点 如if FileExists('c:/winnt/system32/calc.exe') then winexec('c:/winnt/system32/calc.exe',sw_show) else winexec('c:/windows/calc.exe',sw_show);
A askyer Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-23 #6 直接写winexec('calc.exe',sw_show),不需要写全路径,只要在当前目录或系统目录
人 人在昆明 Unregistered / Unconfirmed GUEST, unregistred user! 2003-01-23 #7 同志们说得跟问得好象不一样,大家回答的是 调用外部程序 而不是 “直接嵌入到程序中”,嵌入恐怕要用OLE吧!