|
-
May 31st, 1999, 02:07 PM
#1
disable a push button
How do you disable a push button in MFC???
thx,
grace
[email protected]
-
May 31st, 1999, 02:44 PM
#2
Re: disable a push button
m_PushButton.EnableWindow(FALSE);
-Safai
-
May 31st, 1999, 04:56 PM
#3
Re: disable a push button
[ccode]
//disable it
GetDlgItem(IDC_MYBUTTON)->EnableWindow(FALSE);
//hide it
GetDlgItem(IDC_LIST)->ShowWindow(FALSE);
[//ccode]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|