when reading values out of a collection in VS 2003, it's best to always know what's in there first so you can pull the stuff out by converting the item(s) to the type they were when they were stored in the first place
I.E. Dim AString As String = CStr(ComboBox1.Items.Item(0)) or Dim AnInteger As Integer = CInt(ComboBox1.Items.Item(0))
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.