I have an issue where a ComboBox control will change it\'s Text value when it is resized. Here is some sample code that I worked up:
Option Explicit On
O
When the form loads, ComboTest
gets executed, and you see a '6', however when you resize it does not show the new data, sounds like you need to refresh the combo box, regardless of the resize or not.
Try uxComboBox.Refresh()
immediately after the line uxComboBox.Items.AddRange
.
And after the line 'ComboTest', set the selected index to 0 uxComboBox.Index = 0
also.
Hope this helps, Best regards, Tom.