本文转自:http://blog.sina.com.cn/s/blog_486285690100ljwu.html目前知道三种方式:WinExec,ShellExecute ,CreateProcess,别人已经总结的很好了《vc中调用其他应用程序的方法(函数) winexec,shellexecu...
分类:
其他好文 时间:
2015-04-10 19:38:07
阅读次数:
115
目前知道三种方式:WinExec,ShellExecute ,CreateProcess,别人已经总结的很好了《vc中调用其他应用程序的方法(函数) winexec,shellexecute ,createprocess》,我全文转载一下,另外后面加点自己的总结(黑体部分,除了标题)。
三个SDK函数: WinExec,ShellExecute ,CreateProcess可以实现调用其他程...
分类:
其他好文 时间:
2015-04-09 19:55:22
阅读次数:
138
目前知道三种方式:WinExec,ShellExecute ,CreateProcess,别人已经总结的很好了《vc中调用其他应用程序的方法(函数) winexec,shellexecute ,createprocess》,我全文转载一下,另外后面加点自己的总结(黑体部分,除了标题)。
三个SDK函数: WinExec,ShellExecute ,CreateProcess可以实现调用其他程...
分类:
其他好文 时间:
2015-04-09 19:55:04
阅读次数:
178
ShellExecute函数ShellExecute函数原型及參数含义例如以下: function ShellExecute(hWnd: HWND; Operation, FileName, Parameters,Directory: PChar; ShowCmd: Integer): HINST....
分类:
系统相关 时间:
2015-03-31 23:40:49
阅读次数:
244
作者:风波mail : fengbohello@qq.com本博客地址:http://www.cnblogs.com/fengbohello/p/4374450.html1、核心函数说明核心函数:ShellExecute函数原型如下:ShellExecute( HWND hwnd, ...
平时在delphi写代码的过程中总是能遇到ShellExecute函数,于是索性将它的使用方法整理一下,由于我在微软的站点上也没能查到个详解(当然我查的中文版,俺菜嘛)ShellExecute函数原型及參数含义例如以下: function ShellExecute(hWnd: HWND; Op...
分类:
系统相关 时间:
2015-03-06 12:41:52
阅读次数:
188
Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件.var strFilePath: string;begin ShellExecute(Handle, 'open', PChar('explorer.exe'), PChar('/select,' + strFilePat.....
分类:
Windows程序 时间:
2015-01-29 19:07:02
阅读次数:
1384
Delphi7 调用 Windows 照片查看器打印对话框.uses ShellAPI;var strPictureFilePath: string;begin ShellExecute(Handle, 'print', PChar(strPictureFilePath), nil, nil, .....
ShellExecute ShellExecute的功能是运行一个外部程序(或者是打开一个已注册的文件、打开一个目录、打印一个文件等等),并对外部程序有一定的控制。 有几个API函数都可以实现这些功能,但是在大多数情况下ShellExecute是更多的被使用的,同时它并不是太复杂。 Shell...
分类:
编程语言 时间:
2015-01-28 17:15:45
阅读次数:
3343
调用ShellExecute所须要头文件#include "windows.h " #include "shellapi.h "
分类:
系统相关 时间:
2015-01-27 18:06:24
阅读次数:
184