L lixin0328 Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-28 #1 用delphi如何调用perl编写的程序,希望各位高人指点
D DragonPC_??? Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-29 #2 你可以使用WinExec或者ShellExecute(Ex)和CreateProcess函数创建一个Perl进程吗 比如 : WinExec('perl my.pl', SW_HIDE) ;
光 光子 Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-29 #3 完全同意楼上朋友。 不过如果你没有把perl目录加入到环境变量PATH里面,那么也许你需要 WinExec('c:/perl/bin/perl.exe my.pl', SW_HIDE); 当然,安装Perl系统是必须的,Delphi不可能解释perl程序
完全同意楼上朋友。 不过如果你没有把perl目录加入到环境变量PATH里面,那么也许你需要 WinExec('c:/perl/bin/perl.exe my.pl', SW_HIDE); 当然,安装Perl系统是必须的,Delphi不可能解释perl程序