I am working on an application that has a lot of checkboxes that start off unchecked, and each one has an associated textbox which is disabled until the checkbox is checked.
I am going through and currently one by one doing an “if checked, enable, if uncheced, disable” – however it is taking forever!
Is there a quicker way / method I should be using that will speed up this process?
I did not state the language as I am not sure it matters – I am programming in VB, however I just want a shove in the right (language independent) direction and I can research further from there.
Why not just create a control that has a checkbox and textbox and handles the enabling/disabling of the textbox within that control?