I had no problems with it. There was no lock. The mouse wheel worked fine. VS2012 Ultimate.
Public Class Form1
Dim Test() As String = {"First", "Second", "Third", "Fourth", "Fifth"}
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ComboBox1.AutoCompleteMode = AutoCompleteMode.SuggestAppend
ComboBox1.AutoCompleteSource = AutoCompleteSource.ListItems
For i As Int32 = 0 To UBound(Test)
ComboBox1.Items.Add(Test(i))
Next
End Sub
End Class
You've taught me everything I know but not everything you know. _________________________________________________________________________________________________________________ This search engine is for MSDN Library and has many features. http://social.msdn.microsoft.com/Search/en-US?query=search%20msdn%20library&beta=0&ac=8
No comments:
Post a Comment