Tagged Questions

6
votes
7answers
403 views

How can I identify and get rid of unused units in the “uses clause” in Delphi 7 ?

This should reduce the executable size quite a bit in some of my very large projects. I am sure there would be other benefits too. EDIT: Is there perhaps a utility that will scan the project and …
2
votes
5answers
301 views

Adding a unit to the Interface uses clause rather than the Implementation uses clause

When using Delphi: If I have a unit that is filled with constants like... Unit AConsts; Interface Const Const1 : WideString = 'Const1'; Const2 : WideString = 'Const2'; Const3 : …