Click here to Skip to main content
15,886,032 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
This is not really a programming question, is it (?)

I dream of being able to permanently assign keyboard keys some predefined character string so that I can enter frequently used text (e-mail address f.i.) very quickly.

This can be a function key or a special key combination or a sequence of these, I don't mind. Like F3+Ctrl$

Needs to work at least under Internet Explorer. Making it work at any time is even better.
Posted

Refer to this article: http://cybernetnews.com/hotkeys-for-windows/[^]

There its is explained how to use Clavier+[^] to assign custom keyboards. It is also said that you can "set up a shortcut to launch a program/website, or output some text to the field currently selected on the screen."
 
Share this answer
 
Comments
YvesDaoust 10-Oct-12 5:59am    
I just tried it and it seems to be doing exactly what I want ! Thanks !
Legor 10-Oct-12 6:02am    
Happy to help you fullfill your "dream" ;)
YvesDaoust 10-Oct-12 6:09am    
thumbs up

The next battle is to lobby some standardization commitee so that they define tags for use on form so that your personal data can be filled in automatically...
You can try this way ...
First: Trap key press
here is an example how to do that ??
http://support.microsoft.com/kb/320584[^]

Second: Call your method according to key press
Third: inside method start your process.
C#
Process.Start("your_process");


Enjoy your work :D
 
Share this answer
 
Comments
YvesDaoust 10-Oct-12 5:58am    
Thanks but I am not programming an application.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900