HowTo clear a radio button selection
C / C++ / MFC
5
Posts
4
Posters
0
Views
1
Watching
-
void CWnd::CheckDlgButton( int nIDButton, UINT nCheck ); or for radio buttons in a group use void CWnd::CheckRadioButton( int nIDFirstButton, int nIDLastButton, int nIDCheckButton );
greatest thing is to do wot others think you cant
suhredayan@omniquad.com -
Use the
CButton::SetCheck()
method
"The pointy end goes in the other man." - Antonio Banderas (Zorro, 1998)
-
You can use
CButton::SetCheck()
:) Ant. -
Should have refreshed before posting, seems David was a little quicker than me on this occasion :doh: Ant.