Thanks, that did it.
Main Topics
Browse All TopicsI'm having problems receving a notification when Windows is shutting down if I setup the WMQueryEndSession procedure on a custom class. If setup inside a form it gets called just fine. Any idea what might be the problem?
WORKS:
--------------------------
type
TForm1 = class(TForm)
private
{ Private declarations }
procedure WMQueryEndSession(var Message: TMessage); message WM_QUERYENDSESSION;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.WMQueryEndSession(v
begin
if MessageDlg('Close Windows ?', mtConfirmation, [mbYes,mbNo], 0) = mrNo then
Message.Result := 0
else
Message.Result := 1;
end;
--------------------------
DOESN'T WORK (the WMQueryEndSession procedure is never called):
--------------------------
TMonitor = class
private
procedure WMQueryEndSession(var Message: TMessage); message WM_QUERYENDSESSION;
protected
public
end;
implementation
procedure TMonitor.WMQueryEndSession
begin
if MessageDlg('Close Windows ?', mtConfirmation, [mbYes,mbNo], 0) = mrNo then
Message.Result := 0
else
Message.Result := 1;
end;
On the main form:
Monitor := TMonitor.Create;
--------------------------
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: RadikalQ3Posted on 2005-09-10 at 13:30:09ID: 14857229
Hi!
e.com/Prog ramming/ Pr ogramming_ Languages/ Delphi/Q_2 1523830.ht ml
A simple class dont receive Windows messages.
Just windows receive messages.
You can use AllocateHwnd for allocate an 'virtual window' that can receive messages trough its window proc (as used in non visual components like timers...)
You have an example of AllocateHwnd in this question:
http://www.experts-exchang