Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
1.86/5 (4 votes)
See more:
Hi all

Please help me in doing a auto complete text box in wpf using VB.NET. i got the below code but getting error..

VB
Dim col As New AutoCompleteStringCollection
       Dim i As Integer
       For i = 0 To ds.Tables(0).Rows.Count - 1
           col.Add(ds.Tables(0).Rows(i)("columnname").ToString())
       Next
       txtCompanyName.AutoCompleteSource = AutoCompleteSource.CustomSource
      txtCompanyName.AutoCompleteCustomSource = col
      txtCompanyName.AutoCompleteMode = AutoCompleteMode.Suggest


i m getting error at the underlined places
"AutoCompleteSource is not a member of system.windows.controls.textbox"

Thank you
Posted
Updated 29-Apr-13 3:35am
v2
Comments
db7uk 29-Apr-13 9:33am    
An error message would really help here!
[no name] 29-Apr-13 9:38am    
Well the error message is clear is it not? http://wpfautocomplete.codeplex.com/
[no name] 29-Apr-13 9:40am    
Only in MVVM we can make it..??is there any other way..??pls suggest something in vb.net

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900