Combo+GroupBox
-
How to make possible the activation of group-box controls by choosing one of the options in combo-box list? Best regards
Look at the documentation first, then come ask questions. DOCUMENTATION[^] Looks like OnSelectedItemChanged or OnSelectedValueChanged should work quite well for you.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
-
How to make possible the activation of group-box controls by choosing one of the options in combo-box list? Best regards
Not sure what you mean by activation. I think you may be referring to either enabled or visible. Lets say it's the enabled property of the GroupBox. First you need to catch the SelectedIndexChanged event of the ComboBox, evalutate the selection and determine if the GroupBox should be enabled
private void MyComboBox_SelectedIndexChanged(object sender, EventArgs e)
{
MyGoupbox.Enabled == (MyComboBox.SelectedValue == criteria);
}Excuse the pseudocode but i think you get the idea
"You get that on the big jobs."