Autohotkey to map F5 to Shift+Home and then F5 - eventually executing a single line query in sql server?
- by puretechy
Reading the syntax from autohotkey, I am trying to achieve this. But the first step of selecting the entire line is not working:-
F5::
send {Shift Home}
return
I have tried few others too, but its not working. This is not sending Shift+Home combination on pressing F5 key.
Please tell me what's wrong with this?
Also if possible, what to do next?, as if I will write
send {F5}
I believe, it will recursively fire this script again and again..