Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Send CTRL-ALT-Home through DDE

Status
Not open for further replies.

KDavie

Programmer
Feb 10, 2004
441
US
I am tring to send CTRL-ALT-Home through a DDE but can't seem to figure out how to get the "Home" in there. Here is my code:

Code:
keystringsend.LinkTopic = "LCW|Info"
keystringsend.LinkItem = "Keystring"
keystringsend.LinkMode = 2
keystringsend = "^+{HOME}"
keystringsend.LinkPoke

I am using this same method to send other commands (ie. enter, tab, etc.), but can't get this one to work. Any help is appreciated.

-Kevin

 
Nevermind, I came up with a work-around.

Code:
AppActivate "LastWord Client"
SendKeys "^(+{HOME})", True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top