Learn to HotKey Scrub
"https://social.msdn.microsof*****m/Forums/vstudio/en-US/c1a24688-d844-4adc-9d85-416a7158c6ba/faq-how-do-i-register-a-hotkey-in-vbnet"
Need Help With Visual Basic Program.
Does anyone know how to keep a visual basic program responsive to keyboard shortcuts while i use a different program such as Google chrome without using web browser on the visual basic form. I'm trying to hack a online flash game that requires you to log in before playing but switching back and forth between the game and clicking on my program is too bothersome i want to be able to use my program's shortcuts while playing the game.
Learn to HotKey Scrub
"https://social.msdn.microsof*****m/Forums/vstudio/en-US/c1a24688-d844-4adc-9d85-416a7158c6ba/faq-how-do-i-register-a-hotkey-in-vbnet"
If You Like My Releases, Hit The Thanks button!
Follow the rules.
Successful Purchases: 2
Successful Sales: 1@The403
@sundy42
Scammed: 1@wZ. Gali
Favorite Quotes:
can i use the hot keys while im gaming and my program is not selected?
---------- Post added at 05:23 AM ---------- Previous post was at 05:18 AM ----------
can i use the hot keys while im gaming and my program is not selected?
Last edited by muteninja; 07-18-2013 at 04:19 AM.
muteninja (07-19-2013)
The program, while not focused, still gets cpu time (just like every other process), so it should stay responsive. The fact that it's coded in vb wouldn't have anything to do with responsiveness. Maybe you're causing an infinite loop on your main thread? (the code to GetKeyState() : that loop should be run from it's own thread -- you don't learn about threads until later).
'Some things that can be counted, don't matter. And some things that matter, can't be counted' - A.E.
--
muteninja (07-19-2013)
Thanks everyone i got it working now!