积极答复者
用 CreateWindow 函数的时候 显示实参与形参不匹配 这是为什么啊?

问题
答案
-
写成这样
hwnd = CreateWindow(_T("w"), _T("wang"), ...);
即将您的字符串用_T("...")/TEXT("...");
Visual C++ enthusiast, like network programming and driver development. At present is being engaged in the WinCE/Windows Mobile platform embedded development.- 已建议为答案 Helen Zhao 2011年11月9日 5:02
- 已标记为答案 Helen Zhao 2011年11月16日 3:15
全部回复
-
写成这样
hwnd = CreateWindow(_T("w"), _T("wang"), ...);
即将您的字符串用_T("...")/TEXT("...");
Visual C++ enthusiast, like network programming and driver development. At present is being engaged in the WinCE/Windows Mobile platform embedded development.- 已建议为答案 Helen Zhao 2011年11月9日 5:02
- 已标记为答案 Helen Zhao 2011年11月16日 3:15
-
该变量类型应为TCHAR数组
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP