Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Enable/Disable a group of controls with one click

0.00/5 (No votes)
22 Jul 2002 3  
This article demonstrates a CButton derived class that is used to enable or disable a set of controls with a single click.

Introduction

This article demonstrates a CButton derived class that is used to enable or disable a set of controls with a single click. When the user clicks the button the class iterates through the list of controls registered with the button and toggles their enabled state.

How does it work

The CEAdvButton class contains a CArray of int elements ( control IDs ) and Disables/Enables the dialog elements in the list using its SetCheck() function..

How to use it

There only three functions:

void AddControlToList( int l_intID ); // Add a control in to the list of elements

void ClearList(); // Clear the all elements in the list

void SetCheck( int nCheck ); // Set the buttons check

Thank you for your attention, I hope this little class able to help you in the your hard work.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here