Click here to Skip to main content
15,885,998 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I my MFC dialog based application there are 8 radio buttons are in group;their default selection is on 4th button,so that at the initialization time I passed default integer that is being correct as given below:
m_LedSelect(4)
but when I add event of update their selection on another button in application,i reinitialize as given below:
m_LedSelect=4;
but there is no changes occur,so then what I do for it?
Posted

1 solution

Have you forgot to call UpdateData(FALSE);[^] after that
 
Share this answer
 
Comments
Venkat Raghvan 11-Feb-13 0:52am    
Thanks,Problem solved!!!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900