Is there a method for pasting into the active box on the click of a button?
I need a button that when clicked pastes the contents of the clipboad into a username and password box online (like roboform).
Professional Software Development Tools
Is there a method for pasting into the active box on the click of a button?
I need a button that when clicked pastes the contents of the clipboad into a username and password box online (like roboform).
I utilized Worm's Keystroke.dll to accomplish this example. (please note that Worm also created a function for us to use that makes it even easier to use his keystroke.dll (less typing). THANK YOU worm!
Here is an example (.exe):
http://www.amsuser.com/ams/examples/...&Intrigued.exe
Here is the project file:
http://www.amsuser.com/ams/examples/...&Intrigued.apz
Did anyone have a probem with this working for them?
Last edited by Intrigued; 08-08-2006 at 08:52 PM.
Intrigued
I got messing with this offering more tonight and I realized that one could get better (deeper) access to Control Panel applets like the Display Properties. It would take some trial and error. But it definitely can be done (I did it a bit tonight).
For example, you may use this code:
Application.Minimize()
SendKeys("{RMOUSECLICK 500 500}")
... to access the contextual menu (right-click popup menu) of the Desktop. (as long as nothing is at 500 500, maybe use 0 0 instead).
Then you can use the page up, down, left, right, tab, enter options to get to where you need to go. Then you can even adjust settings.
Pretty wild, interesting, and intriguing things there a going on.
;-)
Intrigued