ShellExecuteA()與FindWindow()的使用

ShellExecuteA()

#include <shellapi.h>

ShellExecuteA(0, "open", "notepad++.exe", "index.html", NULL, SW_SHOWNORMAL);

FindWindow()

#include <winuser.h>

HWND winName = FindWindow(NULL, "計算器");
if (winName != NULL)
{
      // 找到窗口
}
else
{
      // 未找到窗口
}
相關文章
相關標籤/搜索