.net - How to Add data to Dropdown in windows forms applications in C# -


i trying create windows form application. create .zip file password , sending .zip file clients email address in 1 email , email send password of .zip file client...

i using dropdown box enter "to:" email address... , want user not write entire email address if used email id.. want whole email id display if entered starting part of it... (like intellisense) , if new 1 make new entry.. not sure how implement this.. looks dropdown not this..

any 1 please me or suggest how achieve functionality..

thanks in advance!

you can tell use items in combobox sort of "suggestion" list user. it'll display nearest match type, think you're looking for.

set these properties on combobox, either in code-behind or @ design time:

combobox1.autocompletesource = autocompletesource.listitems; combobox1.autocompletemode = autocompletemode.suggestappend; 

Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -