1)How to change a text of a button in runtime?
Answers were Sorted based on User's Feedback
Answer / jp
1. Only required to know the Control Resource ID
((CButton*)GetDlgItem(IDOK))->SetWindowText(_T("Hello"));
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ps
1. make a control variable of button with the Cbutton class;
2. where you want to change the text then call only setwindowtext();
in header file;
Cbutton mButton;.
IN RESOURCE.H...
#DEFINE BUTTON_ID 249;// CONTROLL ID NUMBER 249 ANY YOU WNT OR SYSTEM GENRATED.
in cpp file.
'''''''mesage map
ABC::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
DDX_Control(pDX, BUTTON_ID, mButton);
}
BOOL ABC::OnInitDialog()
{
// IF USER CHANGE ON INIT METHOD THEN CAN DO OR CHANGE IN ANY METHOD WITH THE SAME CLASS
mButton.setwindowText(_T"hello");
}
Is This Answer Correct ? | 0 Yes | 1 No |
what is the updated verssion in vc++
What is the difference between regular dlls and extended dlls?
What is the use of CObject::Dump function ?
Which MFC function is used to display output?
Name the Synchronization objects?
What is socket?
I want recent paper pattern for HP company?
Whats is DDX & DDV in MFC?
What is stack size in win32 program?
What is difference between the TCP/IP and UDP socket
How to access document object from view ?
Tell me about different kinds of synchranization objects ?