WantsToLearn
Programmer
TextBox bound to a CombBox Text property similar to this:
TextBox1.DataBinding.Add("Text", ComboBox1, "Text")
If the ComboBox SelectedIndex is -1
1. Do I have to manually set TextBox1.Text property = ""
2. If I do that, does it impact the DataBinding in any way
TextBox1.DataBinding.Add("Text", ComboBox1, "Text")
If the ComboBox SelectedIndex is -1
1. Do I have to manually set TextBox1.Text property = ""
2. If I do that, does it impact the DataBinding in any way