发布网友 发布时间:2024-10-24 02:56
共2个回答
热心网友 时间:2024-11-02 11:51
用 一个API 叫 WinExec 呀
VB的声明如下 :
Declare Function WinExec Lib "kernel32" Alias "WinExec" (ByVal lpCmdLine As String, ByVal nCmdShow As Long) As Long
C的声明如下:
UINT WinExec(
LPCSTR lpCmdLine, // address of command line
UINT uCmdShow // window style for new application
);
说明:
lpCmdLine String,包含要执行的命令行
nCmdShow Long,定义了以怎样的形式启动程序的常数值。参考ShowWindow函数的nCmdShow参数
例如
WinExec("你的程序1 路径",SW_HIDE);
WinExec("你的程序2 路径",SW_HIDE);
WinExec("你的程序3 路径",SW_HIDE); //OK了
热心网友 时间:2024-11-02 11:47
制作一个bat文件