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