What is the difference between using a unit after interface section and implementation section?
When should I place a uses statement after interface and after implementation?
Ex:
unit MyUnit;
interface
uses
Windows, Messages, SysUtils, Forms,
MyUsesUnit; // uses here?
....
....
....
implementation
uses MyUsesUnit; // or, uses here?
When should I place a uses statement after interface and after implementation?
Ex:
unit MyUnit;
interface
uses
Windows, Messages, SysUtils, Forms,
MyUsesUnit; // uses here?
....
....
....
implementation
uses MyUsesUnit; // or, uses here?