Autocomplete using AD as source

jamie_pattison

Well-known member
Joined
Sep 9, 2008
Messages
116
Programming Experience
Beginner
I have some code that calls to Active Directory and gets a list of users then adds them into a ComboBox.

I would like to extend this feature by allowing the combo box to autocomplete when a user starts to type.

Ive read a few articles but they seem to be based on data coming from SQL server but none on Active Directory. Could anyone assist by advising how i could go about this?

Thanks
 
I got over this by iterating all the items into a List(of string) and then adding it to the autocomplete source, for anyone that likes to know
 
Back
Top