1) Enable or disable a Cancel button at run time?
Answer / 106743013743
Hi,
Example:-
BOOL Ctharam::OnInitDialog()
{
CDialog::OnInitDialog();
// Below Code, To Enable or Disable a button as
runtime
CButton *pLogin1 = (CButton*)GetDlgItem(IDCANCEL);
pLogin1->SetWindowTextW(L"Reset");
pLogin1->EnableWindow(FALSE);
return TRUE;
}
Note:- pLogin1->EnableWindow(TRUE); // to enable a Cancel
button
I hope that it might be helpful to you!!!!!
| Is This Answer Correct ? | 1 Yes | 2 No |
Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
1)At run-time, you can change the icon by calling the LoadIcon() function?
What is stack size in win32 program?
If i derive a new class from CObject what are the basic features my derived wil get ?
In VC++ How to transfer between one exe to another exe while running..
What is a message map, and what is the advantage of a message map over virtual functions?
What is difference between the TCP/IP and UDP socket
Have you ever used win32 APIs ?
how does the UIThread and worker thread communicates and handle events
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
Explain about MDI and CMultiDocTemplate ?