Hi Erel,
I have a form with several fields, some of these fields use ComboBox's to limit the choice to the user. I would like to be able to get the value from each ComboBox and the rest of the controls when the user clicks the finish button.
At present there appears to be two methods of doing this...
1) Use the SelectionChanged event on each ComboBox to obtain and store the value/text in a Global variable until the finish button is pressed.
2) On pressing the finish button, look at the SelectedIndex property for each ComboBox and then use a Select Case to determine what the actual value/text is.
Neither is particularly pretty.
It would be far better for me if I could just look at the value/text that has been selected when the finish button is pressed. Something like...
Field1Value=ComboBox1.Text
Is it possible to include a text property?? Maybe in the next version??
Regards,
RandomCoder
I have a form with several fields, some of these fields use ComboBox's to limit the choice to the user. I would like to be able to get the value from each ComboBox and the rest of the controls when the user clicks the finish button.
At present there appears to be two methods of doing this...
1) Use the SelectionChanged event on each ComboBox to obtain and store the value/text in a Global variable until the finish button is pressed.
2) On pressing the finish button, look at the SelectedIndex property for each ComboBox and then use a Select Case to determine what the actual value/text is.
Neither is particularly pretty.
It would be far better for me if I could just look at the value/text that has been selected when the finish button is pressed. Something like...
Field1Value=ComboBox1.Text
Is it possible to include a text property?? Maybe in the next version??
Regards,
RandomCoder