views:

818

answers:

3

Can anyone recommend a .NET winforms control that offers similar functionality to the address bar in Windows Explorer, auto-completing file paths?

I'm not too bothered about Vista-style breadcrumbs - quite happy with a simple XP-style textbox-only appearance, but I'd like it to offer auto-complete suggestions based on the file system.

+4  A: 

The built-in ComboBox has an AutoCompleteSource property which can be set to FileSystem.

Judah Himango
A: 

Thanks Judah - that's the kind of nice simple solution I like!

LordSauce
A: 

Have a look at this free navigation bar.

gary72