Question

I have a RxLib Tools installed on my Delphi XE. I need to learn more about the RxLib source but I don't know where the .cpp files are stored on installed Delphi .groupproj file..

Anyone here can help me where it were stored?

Thank in advance.

Was it helpful?

Solution

The RxLib library is coded in Delphi, not C++, so there's no cpp files involved, just .pas files.

Where the files are located in your disk may vary depending on how you installed the library.

  1. If you used an installer and the installer made the IDE library path configuration to let the IDE browse the units source code, you can use the ctrl+click IDE feature to automatically open the file and inspect its location. To do so, add a component from the library to a form and save it (to let the IDE add all the required units to the uses clause). Locate the file of your interest in the uses clause, hold the ctrl key and you'll see how the unit name is turned into a hyperlink when you hover the mouse over it. Click the unit name and the unit will be opened.

    I use the jedi library in my example, because I don't use rx anymore since it was added to jvcl.

    ctrl+click

    Now, you hover the mouse over the page title when this file is active in the IDE, and you get the file name including the full path.

    full path

OTHER TIPS

The only C++ files I see in that project are for the C++ Builder demo. It's otherwise a Delphi project with Delphi code.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top