VB使用ShellExecute调用其他程序

来源:互联网 发布:程序员 那就是无业 编辑:程序博客网 时间:2024/03/29 02:41
2007-12-24 14:06:30

字体变小 字体变大
VB使用ShellExecute调用其他程序

ShellExecute APi是功能强大的函数调用接口,它不仅可以调用不带参数的可执行文件,还可以执行带参数的文件,如cmd ping 127.0.0.1,还有可以打开指定的网页和收发邮件的功能.
声明:
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _ (ByVal hWnd As Long, ByVal lpOperation As String, _  ByVal lpFile As String, ByVal lpParameters As String, _  ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
原型:
HINSTANCE ShellExecute(
  HWND hwnd,          //父窗口句柄
  LPCTSTR lpOperation,     //操作,"open","print","explore"
  LPCTSTR lpFile,       //文件名,前面可加路径
  LPCTSTR lpParameters,    //参数
  LPCTSTR lpDirectory,     //默认文件夹
  INT nShowCmd         //显示方式
);

打开一个应用程序
ShellExecute(this-
ShellExecute(this-

打开一个同系统程序相关连的文档
ShellExecute(this-

激活相关程序,发送EMAIL
ShellExecute(this-mailto:huolf@tom.com","","", SW_SHOW );

打开文件夹

ShellExecute(handle, "open", path_to_folder, NULL, NULL, SW_SHOWNORMAL)

用系统打印机打印文档
ShellExecute(this-

原创粉丝点击