Re: Problems loading a second Delphi form

Posted by Madboy on July 10, 2005

In Reply to: Problems loading a second form posted by GC0821 on July 08, 2005

For your first problem, are you using a MDI Form? If so the form will sit above the taskbar if it is a Child form. Or it might be set to fsStyle:= AlwaysOnTop in which case it wont minimize.

Finally, the reason the application is still running in the process is because you are not unloading your app from memory correctly. A simple example of closing a form correctly would be:

Form1.Close;
Form1.Release;

Hope this help!

 

DelphiLand Forum