Hi
I am trying to do the following in the uses clause of a form:
Uses
{$IFDEF X}
FormX,
{$ENDIF}
{$IFDEF Y}
FormY,
{$ENDIF}
other units.....;
Form X and FormY has the same name in Delphi - Let's say MyForm.
In other words, If I have a button on the main form of the...