Is there a way to list what units/classes are in a Delphi compiled package?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could create a new package, add your .dcp to its requires clause, add a new unit to it and use code completion in the uses clause – it will show you all available units in all required packages. If your .dcp is the only required package and you set it to display sorted by scope (right-click in the dropdown) then the units from your .dcp should be on top.
I’m not sure if this works in Delphi 7 already. It works in Delphi 2007.