Gut, danke!
Und was gehört dann in die Execute-Methode hinein? Ich habe das mal aus einem
nonVCL-Proggy herausgekramt, leider aber nicht von mir selber geschrieben
Delphi-Quellcode:
var
Msg: TMsg;
begin
while GetMessage(Msg, 0, 0, 0) do begin
TranslateMessage(Msg);
DispatchMessage(Msg);
end;
Übrigens in der Hilfe zu PostThreadMessage steht folgendes:
Zitat von
OH:
The system only does marshalling for system messages (those in the range 0 to WM_USER). To send other messages (those above WM_USER) to another process, you must do custom marshalling.
Verstehe ich das falsch, dass man keine Message über WM_USER verwenden kann?
LG, ich
Edit: Tippfehler