David Schwartz 426 Posted January 31, 2019 (edited) I've got a 3rd-party library and found a bug in it. The vendor fixed the bug and sent me two files they updated. It's not very practical to rebuild these libs, so I want to just load the files into the project folder and use them directly until they issue them in a formal library update. Nothing I've tried is working. I know there's a way, but I guess I'm forgetting something. What's the correct way to do this? Note that these are both for visual components. (One is for DB use, one is not, and I use them both.) There's a version property in the components that shows the version, and the newer files have a newer version#, and it's not what's being displayed. Edited January 31, 2019 by David Schwartz Share this post Link to post
Uwe Raabe 2057 Posted February 1, 2019 The components you see in the Form Designer are those inside the BPL loaded at design time. As long as you don't re-compile this BPL you will work with the old version of the component. This can be different than the version compiled into your EXE, as long as the new source files are found somewhere in your search path. 1 1 Share this post Link to post
limelect 48 Posted February 1, 2019 if you have the source just point to the source path in the project and the project will be compiled with the NEW source. Project>option>search path> to source 1 Share this post Link to post