Class wizard
-
I have a dialog with 2 radio buttons (beside many others). Both buttons appear OK in the .h, .rc and .clw files, but the class wizard shows only one (even after deleting the .clw file and rebuilding). MFC. :confused: thanks alex 'Architecture is music frozen in space.'
-
I have a dialog with 2 radio buttons (beside many others). Both buttons appear OK in the .h, .rc and .clw files, but the class wizard shows only one (even after deleting the .clw file and rebuilding). MFC. :confused: thanks alex 'Architecture is music frozen in space.'
Class wizard shows radio buttons with group property set. If you want these radio to be a group, you have to set the group property only for the first ctrl. If you set it for both, class wizard will show both the ctrls, but you will lose the auto selection switching property. - NS -
-
Class wizard shows radio buttons with group property set. If you want these radio to be a group, you have to set the group property only for the first ctrl. If you set it for both, class wizard will show both the ctrls, but you will lose the auto selection switching property. - NS -
-
Class wizard shows radio buttons with group property set. If you want these radio to be a group, you have to set the group property only for the first ctrl. If you set it for both, class wizard will show both the ctrls, but you will lose the auto selection switching property. - NS -
-
Thank You. Does that mean that if i .SetCheck() for one of them, the other is automatically unchecked? alex 'Architecture is music frozen in space.'