无法用c ++在浏览器中打开html文件

时间:2015-11-28 09:59:46

标签: html c++

我有以下代码:

#include <windows.h>
void statistics(){
 //processing code
    LPCTSTR helpFile = "report.html";
    ShellExecute(NULL, "open", helpFile, NULL, NULL, SW_SHOWNORMAL);
    system("PAUSE");
}

如果我将这些代码行放在'main'函数中它可以工作,但是这里它写了一个错误:“错误:类型为”const char *“的值不能用于初始化”LPCTSTR“类型的实体。 有什么想法吗?

1 个答案:

答案 0 :(得分:0)

对这些参数使用ShellExecuteA(对于char s)的使用。这应该有用。