开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
vc++ 6.0
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
初次使用VC, 上网看一些短片,
照上面KEY,先练习怎么设定Label1的文字.
其中,它提到 Wnd类 给指标Label1,并且取得ID, 就可以调用它的参数设定
可是我照做却弄不出来
且....CWnd没出现蓝字...
喂入的资料(Input):
预期的正确结果(Expected Output):
IDC_STATIC 的Test出现ABC
错误结果(Wrong Output):
error C2065: 'GetDlgitem' : undeclared identifier
error C2440: 'initializing' : cannot convert from 'int' to 'class CWnd *'
Conversion from integral type to pointer type requires reinterpret_cast,
C-style cast or function-style cast
程式码(Code):(请善用置底文网页, 记得排版)
void CT02Dlg::OnButton2()
{
CWnd *Label1=GetDlgitem(IDC_STATIC);
Label1->SetWindowText("ABC");
}
补充说明(Supplement):