ShellExecute函数用法 ShellExecute函数用法的实例代码
人气:0想了解ShellExecute函数用法的实例代码的相关内容吗,在本文为您仔细讲解ShellExecute函数用法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:ShellExecute,下面大家一起来学习吧。
复制代码 代码如下:
#include<windows.h>
#include<stdio.h>
int main()
{
//打开记事本
// ShellExecute(NULL, "open", "notepad.exe", NULL, NULL, SW_SHOWNORMAL);
//使用notepad.exe 打开指定文本,参数不要忘记加'\'
//ShellExecute(NULL, "open", "notepad.exe", "F:\\杂文件\\test.txt", NULL, SW_SHOWNORMAL);
//Unicode版本
//ShellExecute(NULL, TEXT("open"),TEXT( "notepad.exe"), TEXT("F:\\杂文件\\test.txt"), NULL, SW_SHOWNORMAL);
ShellExecute(NULL, TEXT("open"), TEXT("C:\\Program Files\\Internet Explorer\\iexplore.exe"), TEXT("bbs.cnhonker.com"), NULL, SW_SHOWNORMAL);
//ShellExecute(NULL, TEXT("open"), TEXT("C:\\Program Files (x86)\\Google\Chrome\\Application\\chrome.exe"), TEXT("bbs.cnhonker.com"), NULL, SW_SHOWNORMAL);
scanf("%*d");
return 0;
}
加载全部内容