X xeen Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-24 #2 看MSDN啊,应该是 Button.GetWindowText(); Button.SetWindowText();
L lncd Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-24 #3 void CDDlg::OnButton1() { IDC_BUTTON1.SetWindowText("wwww"); } 无法通过,提示:left of '.SetWindowTextA' must have class/struct/union type 我想是不应该这样访问一个对象的方法吧?
void CDDlg::OnButton1() { IDC_BUTTON1.SetWindowText("wwww"); } 无法通过,提示:left of '.SetWindowTextA' must have class/struct/union type 我想是不应该这样访问一个对象的方法吧?
Z zw84611 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-24 #4 >“用Button.Caption居然行不通!!!!” 老兄,VC不是Delphi!不要想当然。应该这样: GetDlgItem(IDC_BUTTON1)->SetWindowText("hello"); 建议先不要急着写程序,找本VC的书看看。
>“用Button.Caption居然行不通!!!!” 老兄,VC不是Delphi!不要想当然。应该这样: GetDlgItem(IDC_BUTTON1)->SetWindowText("hello"); 建议先不要急着写程序,找本VC的书看看。
D D影子D Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-25 #5 CButton *ed; ed=(CButton *)GetDlgItem(IDC_EDIT2); ed->SetWindowText("caption");