active questions tagged uses-clause - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T04:30:09Zhttp://stackoverflow.com/feeds/tag/uses-clausehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/881778/how-can-i-identify-and-get-rid-of-unused-units-in-the-uses-clause-in-delphi-76How can I identify and get rid of unused units in the "uses clause" in Delphi 7 ?mm20102009-05-19T09:24:13Z2009-05-20T03:54:54Z
<p>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.</p>
<p>EDIT: Is there perhaps a utility that will scan the project and remove redundant ones automatically? I do have 100s of projects and "automatic remove" would be first prize although if I have to I will go the manual way with the help of identifying utilities.</p>
http://stackoverflow.com/questions/528472/adding-a-unit-to-the-interface-uses-clause-rather-than-the-implementation-uses-cl2Adding a unit to the Interface uses clause rather than the Implementation uses clauseAikislave2009-02-09T14:57:27Z2009-02-10T01:14:29Z
<p>When using Delphi: If I have a unit that is filled with constants like...</p>
<pre><code>Unit AConsts;
Interface
Const
Const1 : WideString = 'Const1';
Const2 : WideString = 'Const2';
Const3 : WideString = 'Const3';
Const4 = 100;
Const5 = 100;
Implementation
end.
</code></pre>
<p>and I want to use this unit from another unit, is there any difference between...</p>
<pre><code>Unit AUnit;
Interface
Uses
AConsts;
Implementation
end.
</code></pre>
<p>and </p>
<pre><code>Unit AUnit;
Interface
Implementation
Uses
AConsts;
end.
</code></pre>
<p>?
Or in other words, is there a difference between the two as far as a compiled app is concern?</p>
<p>[Edit 1]</p>
<p>Thanks for the answers so far.</p>
<p>I didn't make this question clear enough, and for that I apologise. The question is not about scope, avoiding circular references etc. It is about differences in the compiled app. Maybe another example would help. </p>
<p>If UnitA, UnitB and UnitC all use AConsts, would there be a difference in the compiled app (assuming no name clashes between the constants in the AConsts units and other code) between App1 where these UnitA, UnitB and UnitC all have AConsts in the Interface section's uses clause and App2 where UnitA, UnitB and UnitC all have AConsts in the Implementation section's uses clause.</p>