開發平台(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):