Stevie hat im anderen Thread das hier geschrieben
Application->CreateForm(__classid(TForm1), &Form1); dürfte für dich interessant sein...
- einfach in Application->CreateForm(__classid(TForm2), &Form2);
Auf diese Art und Weise wird nur Form2 erstellt. Hiermit:
Code:
Application->CreateForm(__classid(TForm2), &Form2);
Application->CreateForm(__classid(TForm1), &Form1);
werden beide Forms erstellt, wobei immer das zuerst erstellte Form als primäres Form genutzt wird. In Form2 musst du natürlich noch die
Unit von Form1 einbinden, anschließend sollte der Aufruf von Form1.Show funktionieren.
Greetz
alcaeus