up vote 1 down vote favorite
1
share [g+] share [fb]

I have a small program which simply reads a diary text file and displays it in a memo - thats it - no buttons you double click on the form to shut it down if you want it to disappear. When it has been run (even if you close it) windows XP gets as far as "Windows is shutting down" ie. after "Saving User Settings" etc and then it hangs. I have examined the code which appears little different from other programs I have written which were much more complicate but can see nothing wrong - the close routine for example contains application.terminate which (I think) should clear anything wrong out of memory anyway. Any ideas since I seem to have run out of them?

link|improve this question
3  
If you run your program and then close it does it still appear in the Windows task manager? – LachlanG Aug 4 '09 at 13:15
Yes it shows in Task manager - I have set it up so it appears in the tray not in the task bar though. Originally I just set the close routine as 'close'but since it was playing up I put in what I believe to be severla lines of redundant code eg. application.terminate. The point is that the program (I've tested all of the running bits and pieces and it seems that this one is the cause) stops windows closing even if you close the program first. – Alan Bailey Aug 6 '09 at 15:27
feedback

4 Answers

Based on what you've described, the program should have a single line of programmer-added code, which is to call Memo1.Lines.LoadFromFile. That's what it means when you say, "That's it."

That program doesn't even need a "close routine." (I assume you mean the form's OnClose event.) When the main form closes, the application terminates itself automatically. That's how all Delphi programs work. If you're putting more on top of that, you're doing too much.

link|improve this answer
feedback

Just a few suggestions, because it is not entirely clear what your problem is.

Does your application has problems with closing, or does it hang during windows shutdown?

  • Have you tried putting a breakpoint on application.Terminate? And does that provide extra information.
  • From within the mainform, you can use Close and not Application.Terminate.
link|improve this answer
I think the OP meant that the program is preventing Windows from shutting down. – Lieven Aug 4 '09 at 13:54
The program appears to close OK but windows hangs whether or not you close it. – Alan Bailey Aug 6 '09 at 15:32
feedback

Apps can inhibit shutdown if they are using up CPU time, although a 'modern' OS like Vista and W7 should show a dialog telling you about this after a period and offering to let you abort the app. Check that your app is showing 0% CPU when its idle by looking in task manager and viewing 'processes'. Bri

link|improve this answer
feedback

The following code reacts on the windows shutdown message und closes the program.

TForm1 = class(TForm)
    ...
private
    procedure WMEndSession(var Message: TWMEndSession); message WM_ENDSESSION;
    ...
end;

procedure TForm1.WMEndSession(var Message: TWMEndSession);
begin
    close;
end;
link|improve this answer
1  
What's wrong with the handler for that Windows message in TApplication.WndProc()? – mghie Aug 5 '09 at 13:44
That's probably the same. – port-zero Aug 6 '09 at 14:14
feedback

Your Answer

 
or
required, but never shown