I have four checkboxes in my form. I have string variable called “CheckedString”. If i check the first checkbox “A” must be assigned to “CheckedString”. If i select both first and second checkbox at a time. “AB” must be assigned to “CheckedString”. If i select third and fourth checkbox “CD” must be assigned to “CheckedString”.So that several combination exists. How to implement this in C sharp. Please help?
I have four checkboxes in my form. I have string variable called CheckedString. If
Share
Pseudocode since my VS2008 is currently in a “hosed” state and I can’t check:
Voila! There you have it. You simply append the value for each checkbox in order.