Send key for ctrl 5
Send key for ctrl 5
(OP)
I can't seem to figure out the sendkey for ctrl 5. I've tried the following and none work.
Sess0.Screen.SendKeys ("{^5}")
Sess0.Screen.SendKeys ("(^5)")
Sess0.Screen.SendKeys ("^5")
anyone able to post how to use the ctrl then 5 key? thx
Sess0.Screen.SendKeys ("{^5}")
Sess0.Screen.SendKeys ("(^5)")
Sess0.Screen.SendKeys ("^5")
anyone able to post how to use the ctrl then 5 key? thx
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
CODE
RE: Send key for ctrl 5
http://support.attachmate.com/techdocs/1364.html
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
http://support.attachmate.com/techdocs/2268.html
with the one i linked carlier about the specific codes for control sequences to find the solution
i know it is not the exact same key press you want to send but it should be effective
RE: Send key for ctrl 5
RE: Send key for ctrl 5
out of curiosity, did you record this in Extra macro recorder? and did it work?
i suspect if you code this in Excel Vba, then you would need to first use AppActivate Extra before you can evoke the Sess0.Screen.SendKeys ("^5")
zach
RE: Send key for ctrl 5
RE: Send key for ctrl 5
Sess0.Screen.Sendkeys("<Newline><Newline><Newline><Newline><Newline>")
Ctrl 5 in Excel is
Selection.Font.Strikethrough = True
RE: Send key for ctrl 5
if it works to change screens then it was programmed
to do so by someone else.
Unless your using f5 instead of 5 then <^F5 or ^PF5>
could work if they were programmed to do a screen change.
Usually the F keys are programmed for these types of
functions.
RE: Send key for ctrl 5
RE: Send key for ctrl 5
SendKeys "<Ctrl+5>"
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5
For example to turn my page the "<Transmit>" call does the trick, although it is mapped to several key combinations on my Key Mapping.
try Sess0.Screen.SendKeys("<Transmit>")
Options>Settings>Keyboard Maps>clickie clickie selected>hold control and click on the 5 of the onscreen keyboard.
Sometimes you gotta leave your zone of safety. You have to manufacture Inspirado. You gotta get out of the apartment. You've got to run with the wolves. You've got to dive into the ocean and fight with the sharks. Or just treat yourself to a delicious hot fudge sundae........ with nuts. - Jack Black
RE: Send key for ctrl 5
RE: Send key for ctrl 5
RE: Send key for ctrl 5