Reputation: 149
I've seen some applications that as you type a path into a text box is builds out a list of available directories and or files.
I'm trying to replicate in VB.NET using VS2008 and can't figure out how to get started. If someone could point me in the right direction that would be great.
--George
Upvotes: 0
Views: 478
Reputation: 149
AutoComplete did it..
Text Box Properties = AutoCompleteMode = Suggest & AutoCompleteSource = AllSystemResources
This allows me to start typing and see the directories.. Thanks for the point in the right direction!
Upvotes: 0
Reputation: 849
AutoComplete should work for you:
http://visualbasic.about.com/od/quicktips/qt/AutoCompleteGuide.htm
Vb.net + AutoComplete in textboxes
Upvotes: 3