J
John W
I have a combobox containing the following items...
1"
2"
3"
I need to select one of those items and make it the current selected value
in the combobox. No problem with any other values (not containing " but
doesn't seem to work when the item contains ".
If there isnt a " in the item the following works great...
ComboBox1.Text = "2";
However this does not work...
ComboBox1.Text = "1\"";
Any ideas?
1"
2"
3"
I need to select one of those items and make it the current selected value
in the combobox. No problem with any other values (not containing " but
doesn't seem to work when the item contains ".
If there isnt a " in the item the following works great...
ComboBox1.Text = "2";
However this does not work...
ComboBox1.Text = "1\"";
Any ideas?