How send WM_HOTKEY with PostMessage? - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T09:22:32Zhttp://stackoverflow.com/feeds/question/539945http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/539945/how-send-wmhotkey-with-postmessage0How send WM_HOTKEY with PostMessage?Cesar Romero2009-02-12T03:50:46Z2009-02-12T04:18:32Z
<p>I want to send WM_HOTKEY to be captured by other application using a global desktop HotShortCut.</p>
<p>The expected Keys are CTRL + F10</p>
<p>This is the only way I found to trigger the capture of WM_HOTKEY:</p>
<pre><code>procedure TfmMain.ButtonTalkClick(Sender: TObject);
var
Article: TArticleBase;
Msg: TMessage;
begin
Article:= GetSelectedArticle;
if Article <> nil then
begin
Clipboard.AsText:= Article.SelectedText;
Msg.LParamLo:= MOD_CONTROL;
Msg.LParamHi:= VK_CONTROL or VK_F10;
PostMessage(HWND_BROADCAST, WM_HOTKEY, 0, Msg.LParam);
end;
end;
</code></pre>
<p>if I change any of the values of Msg.LParamLo or Msg.LParamHi, WM_HOTKEY is not triggered by the other app.
But using this way, before the message WM_HOTKEY is captured by the Method:</p>
<pre><code>procedure ManageHotKeyMsg(var Msg: TMessage); message WM_HOTKEY;
</code></pre>
<p>The "Windows Execute Dialog" is executed (shortcut "Windows Key" + R)</p>
<p>How is the right way to pass Msg.LParamLo and Msg.LParamHi, to make sure Im sending WM_HOTKEY + "CTRL + F10".</p>
http://stackoverflow.com/questions/539945/how-send-wmhotkey-with-postmessage/539967#5399670Answer by Paul Betts for How send WM_HOTKEY with PostMessage?Paul Betts2009-02-12T04:05:22Z2009-02-12T04:05:22Z<p>Raymond says You're Doing It Wrong:</p>
<p><a href="http://blogs.msdn.com/oldnewthing/archive/2005/05/30/423202.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2005/05/30/423202.aspx</a></p>
<p>Why don't you just talk to the other app directly using some sort of standard IPC mechanism?</p>
http://stackoverflow.com/questions/539945/how-send-wmhotkey-with-postmessage/539999#5399992Answer by Cesar Romero for How send WM_HOTKEY with PostMessage?Cesar Romero2009-02-12T04:18:32Z2009-02-12T04:18:32Z<p>Done using <a href="http://www.delphitricks.com/source-code/windows/simulate_the_pressing_of_keyboard_keys.html" rel="nofollow">PostKeyEx32</a>.</p>
<pre><code>procedure TfmMain.ButtonTalkClick(Sender: TObject);
var
Article: TArticleBase;
begin
Article:= GetSelectedArticle;
if Article <> nil then
begin
Clipboard.AsText:= Article.SelectedText;
PostKeyEx32(VK_F10, [ssCtrl], False);
end;
end;
</code></pre>
<p>Now my Xananews build can speech :D</p>