Search Results

2
votes

Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster.

If you want an application to return an "error" code there is no need to make it a console application. You only need to set the ExitCode, e.g. ExitCode := 10; in …
0
votes

Dynamic Delphi form creation - ensuring correct mouse message handling

While I agree with both of "Deltics" answers, there is another option - depending on whether you need to free the form. On the form FormClose event set the Action to caHide. This will hide …