I was looking into getting a breadcrumbs 'bar' for my application (that list files and folders that I explore myself from raw data (so not via system calls)) and ran into this article:
Is there an edit control for Delphi that allows path editing?
There I noticed an interesting post and piece of code:
http://specials.rejbrand.se/dev/controls/breadcrumb/readme.html
So I wanted to give it a test drive. But I have to be honest, I know very little about components and how to make them etc. and even less about Delphi / Object Pascal so I sought guidance here:
How to install a component from .pas file in delphi?
That worked to the point where I tried to compile the resulting package, using C++ Builder 2009.
I ran into a linker error I can't quite fix:
[ILINK32 Error] Error: Unresolved external 'PathCanonicalizeW' referenced from ...
I wonder if you would know how to fix this ?
I must say I don't like the dependency on installed components much, I like to be able to move the project to a new PC with a clean compiler install and just build it. But if this works easily from just the PAS file then I should be able to do that first during a move.
Your feedback appreciated.