首页 > 代码库 > ShellExecuteA()&MessageBoxA()

ShellExecuteA()&MessageBoxA()

#include<windows.h>#include<stdlib.h>void main(){    while (1)    {        ShellExecuteA(0, "open", "notepad", 0, 0, 0);        //0代表系统启动        //open打开 print打印(调用打印机)         //第三个参数是指令,文件名(绝对路径,双斜杠),网址(http://www.qq.com),甚至发邮件(mailto:)        //0,0(默认值)        //0代表隐藏窗口,1正常,3最大化,6最小化        Sleep(1000);//等价于休眠1s    }}
#include<windows.h>#include<stdblib.h>void main(){    while (1)    {        MessageBoxA(0, "因为网络故障,请重新登录", "QQ故障", 0);        //0代表系统弹出        //内容        //标题        //对话框的类型    }    //system("shutdown -s -t 60");}

 

ShellExecuteA()&MessageBoxA()