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 difference between Extension DLL and Regular DLL?
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
What is the difference between the ASSERT and VERIFY macros?
How many types of combo box are their
2 Answers Aaditya Info Solutions, E Logic,
visual Pogramming c++ coding for create a paint application.. (Please someone help me)
What is CArchive class dowes?
Psychic Window Technique
Why Array Index starts from Zero
What is difference between the TCP/IP and UDP socket
what message is sent to an application when the user presses the primary button?
Difference between Debug and Release versions?
What is the use of message map ?