Hi I am having delphi application which uses more than 100 forms. There is one form call Form B which derived from the Form A.
Unit B
interace
uses A;
Type
Form B = Class(Form A)
End;
Now, when i try to open Form B on the IDE i m getting the error, "Error cerating form: Ancestor for TFormA not found". But when i open Form A and then try to form B then i am able to open form without any error. I am not able to find why its happening. Am i missed something?