码迷,mamicode.com
首页 >  
搜索关键字:shellexecute    ( 98个结果
WinExec、ShellExecute和CreateProcess及返回值判断方式[转]
有三个API函数可以运行可执行文件WinExec、ShellExecute和CreateProcess。CreateProcess因为使用复杂,比较少用。 WinExec主要运行EXE文件。 ⑴ 函数原型:UINTWinExec(LPCSTRlpCmdLine,UINTuCmdShow); ...
分类:Windows程序   时间:2014-11-09 22:10:28    阅读次数:363
[转]WinExec、ShellExecute和CreateProcess及返回值判断方式
[转]WinExec、ShellExecute和CreateProcess及返回值判断方式 http://www.cnblogs.com/ziwuge/archive/2012/03/12/2392472.html有三个API函数可以运行可执行文件WinExec、ShellExecute和Crea....
分类:Windows程序   时间:2014-11-04 22:29:03    阅读次数:399
在C++ Builder中打开浏览器加载页面
今天在开发项目的时候,要求实现根据数据查询出来的一个IP地址,并返回到前台使用浏览器打开。这个东东本身很简单哈。在C++ Builder 中有对应的API函数,下面我们一起来讲讲: 调用外部命令 如果用默认浏览器,就调用ShellExecute(NULL, _T("open"), _T("explorer.exe"), _T("http://www.baidu.com"), NULL, S...
分类:编程语言   时间:2014-10-29 10:51:58    阅读次数:165
How to open a web site with the default web browser in a NEW window
http://delphi.about.com/cs/adptips2004/a/bltip0504_4.htmWhen using ShellExecute (as explained in the above article) to open a web site or a htm file w...
分类:Windows程序   时间:2014-10-27 12:35:53    阅读次数:301
FAT32与NTFS磁盘格式转换
ShellExecute(this->GetSafeHWnd(), “open”, “convert”, “D:/fs:NTFS”, NULL, SW_SHOW);
分类:Web程序   时间:2014-10-24 01:39:57    阅读次数:217
mfc打开本地文件夹
使用ShellExecute来执行open操作 例如要打开D盘下的Test文件夹,如下 ShellExecute(NULL,"open","D:\\Tset",NULL,NULL,SW_SHOWNORMAL);
分类:编程语言   时间:2014-10-23 21:04:37    阅读次数:158
用默认的打开方式打开本地文件
ShellExecute( hWnd: HWND; {指定父窗口句柄} Operation: PChar; {指定动作, 譬如: open、print} FileName: PChar; {指定要打开的文件或程序} Parameters: PChar; {给要打开的程序指定参...
分类:其他好文   时间:2014-10-18 15:29:08    阅读次数:119
VC在windows中打开文件夹并选中文件
网上一位前辈高人的一段精髓代码让我眼前一亮……ShellExecute(NULL,"open","explorer.exe","/select,C:\\a.txt",NULL,SW_SHOWNORMAL);这段代码实在是太好用了,在此mark一下。网上还有其他的代码,比如SHOpenFolderAn...
分类:Windows程序   时间:2014-10-10 01:34:53    阅读次数:202
操作 Windows7 任务栏的快捷方式
目前已经有了可以直接调用的方法。通过 ShellExecute 的 taskbarpin 动词直接实现,如:1 ShellExecute(NULL, _T("taskbarpin"),2 _T("C:\\Users\\titilima\\Desktop\\Test.lnk"),3 N...
分类:Windows程序   时间:2014-10-09 20:11:27    阅读次数:447
调用ShellExecute所须要头文件
调用ShellExecute所须要头文件#include "windows.h " #include "shellapi.h "
分类:其他好文   时间:2014-10-09 17:03:57    阅读次数:143
98条   上一页 1 ... 7 8 9 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!