Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Problem mit WM_COMMAND (https://www.delphipraxis.net/19279-problem-mit-wm_command.html)

Cuchulainn 31. Mär 2004 13:16


Problem mit WM_COMMAND
 
Ich habe folgende Prozedur:

Delphi-Quellcode:
procedure TS12Kommandodatei.PErzeugenKlick;
var hMenue: HMENU;
    hBiss: HWND;
    HDatei: HMENU;
    IntErzeugen: Integer;
    w_param: WPARAM;
begin
  hBiss := FindWindow(nil, 'Biss+');
  hMenue := GetMenu(hBiss);
  if hMenu(hBiss) <> 0 then
  begin
    hDatei := GetSubMenu(hMenue, 0);
    if hDatei <> 0 then
    begin
      IntErzeugen := GetMenuItemId(hDatei, 1);
      w_param := MAKEWPARAM(IntErzeugen, 0);
      SendMessage(hBiss, WM_COMMAND, w_param, 0);
      PErzeugen;
    end;
  end;
end;
Ich rufe einen Menüpunkt auf. Das funktioniert auch einwandfrei; das gewünschte Fenster wird geöffnet. In der Prozedur PErzeugen möchte ich mit dem nun geöffneten Fenster (ein Speichern-unter-Dialog) weiter arbeiten. Aber das Programm wird unterbrochen, bis ich dieses Fenster wieder geschlossen habe. Erst dann wird die Prozedur PErzeugen ausgeführt. Aber dann ist das Fenster ja nicht mehr da, und die Prozedur kann natürlich nichts tun. Warum wird das Programm an dieser Stelle unterbrochen? Und wie kann ich das ändern?

toms 31. Mär 2004 13:21

Re: Problem mit WM_COMMAND
 
Hi,

Probier's mal mit PostMessage anstatt SendMessage.


Zitat:

Sending the message directly (using SendMessage) means that it will be
processed before any messages currently in the message queue (for a given
thread). Indeed, SendMessage does not return (and hence no additional
messages are retrieved in the same thread) until the message is processed.

By contrast, posting the message to the message queue (using PostMessage)
means that it will be processed after the processing of the current message
is complete (together with the processing of any nested SendMessage calls)
and after any messages (of equal or higher priority) that are already in the
queue. PostMessage returns immediately after placing the message in the
queue.

Thus choosing SendMessage vs PostMessage is a way to control the order in
which messages are processed. This is sometimes essential to the logic of a
procedure.

Cuchulainn 31. Mär 2004 13:27

Re: Problem mit WM_COMMAND
 
Genau das war's auch. Vielen vielen Dank.


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:02 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz