Zitat von
Master_BB:
Sprich wenn also auf der MDIForm - MDIChild1 gezeigt wird und dort auf
weiter gedrückt wird soll MDIChild1 verschwinden und MDIChild2 erscheinen.
Sowas in dieser Richtung?
Delphi-Quellcode:
procedure TMDIChild1.FormClick(Sender:TObject);
begin
Application.CreateForm(TMDIChild2, MDIChild2);
MDIChild2.Show;
self.Release;
end;
The problem with troubleshooting is that sometimes the trouble shoots back.