George Vaisey
George Vaisey

Reputation: 149

Directory Paths within a Text Box within VB.NET

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

Answers (2)

George Vaisey
George Vaisey

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

Related Questions