当前位置:主页 > c/c++教程 > ShellExecute函数用法

ShellExecute函数怎么使用

发布:2021-05-06 14:08:20 59


给网友朋友们带来一篇ShellExecute相关的编程文章,网友屠昊天根据主题投稿了本篇教程内容,涉及到ShellExecute、函数用法、ShellExecute函数用法相关内容,已被529网友关注,内容中涉及的知识点可以在下方直接下载获取。

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;
}

 


参考资料

相关文章

网友讨论