Hi,
in der WndProc-Methode reagiere ich auf das Ereignis WM_APPCOMMAND. Im
MSDN steht man sollte auf diese Message True zurückliefern. Aber wie mache ich das? Ich dachte mir Message.Result zu setzen, aber mit welchem Wert? Ich kann ja nicht einfach ein Delphi-True in Integer konvertieren,
API-Trues sind doch irgendwie anders.
Wisst ihr wie das geht?
MSDN (
http://msdn.microsoft.com/en-us/libr...8VS.85%29.aspx ):
Zitat:
Return value
If an application processes this message, it should return TRUE. For more information about processing the return value, see the Remarks section.
Remarks
...Unlike other windows messages, an application should return TRUE from this message if it processes it. Doing so will allow software that simulates this message on Windows systems earlier than Windows 2000 to determine whether the window procedure processed the message or called DefWindowProc to process it.
Delphi-Quellcode:
procedure TForm2.WndProc(var Message: TMessage);
begin
inherited WndProc(Message);
if (Message.Msg = WM_APPCOMMAND) then
begin
//...
end;
end;