Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an edit control for Delphi that allows path editing?

I have various hierarchical structures and would like to allow navigation around then using an editor like the Microsoft one found in the explorer address bar below. Is there such a Delphi component? (Paid for or free)?

enter image description here

like image 759
Brian Frost Avatar asked Jun 01 '11 14:06

Brian Frost


4 Answers

I have spent the morning writing such a control. Actually, I wrote a very generic, completely virtual base control, from which I later derived a directory browser control:

Hierarchy of breadcrumb controls

The source code is published here

Here are some images:

Style := bbsClassic

ScreenshotScreenshot

Style := bbsFlat

Screenshot

Style := bbsHeader

ScreenshotScreenshot

Style := bbsThemed

Screenshot

Style := bbsCommand

Screenshot

like image 120
Andreas Rejbrand Avatar answered Nov 15 '22 10:11

Andreas Rejbrand


Haven't tried by myself but Roy Klever's PathViewer component looks quite interesting.

enter image description here

like image 26
Linas Avatar answered Nov 15 '22 12:11

Linas


TAdvExplorerTreeview from TMS might be what your looking for:

http://www.tmssoftware.com/site/advexptree.asp

enter image description here

like image 9
iamjoosy Avatar answered Nov 15 '22 12:11

iamjoosy


Not sure about anything exactly like that but the BergSoft Next Collection includes a path control similar to that (useful for breadcrumb trails and the like)

http://www.bergsoft.net/component/next-collection/overview.htm

It's free providing you don't want access to the source. Source is pretty cheap though and it's a one off cost that'll get you all future updates.

like image 4
JamesT Avatar answered Nov 15 '22 10:11

JamesT