How To Make Hotkeys For Your Program [GetAsyncKeyState] Tutorial - Visual Basic / Visual Studio

preview_player
Показать описание
GetAsyncKeyState Tutorial ♥ [Visual Basic / Visual Studio ]

Req : Visual Basic / Visual Studio

the quality's quite crap , im so sorry :X

-------------------------------------------------------------------------------

REQUEST FOR ANY TUTORIAL !
I WOULD GLADLY HELP YOU IF POSSIBLE ♥

-------------------------------------------------------------------------------
anyways ,
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ !

brought to you by :
x3Chance
LOTSOFLOVE! ♥ :D
Рекомендации по теме
Комментарии
Автор

I dont know how you did it.... you made my program perfect. You solved that piece I needed!!! THANK YOU!! YOU SAVED MY PROGRAM AND MY SCHOOL PROJECT!! LIFE SAVER!!

Fr
Автор

Thank you! I have been looking for a code like this for hours now! Subscribed!

iTurboGamez
Автор

Thank You very much
I used these getasynckeystate for making hot keys enable for working as cheats in game trainer

awaisahmad
Автор

Al fin uno que me sirvio. MUCHAS GRACIAS

DanioreTkpsn
Автор

Why can't i do this?
I get the error: getasyncstate can not be used due its protection level.

DoombrekerPlus
Автор

Ive also tried vkey as integer but it was not working.

Adamseslar
Автор

If this doesn´t work then try this:
Replace first code

Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Integer) As Integer

to

Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Int32) As Int16

ProGmerZ
Автор

dim starthotkey as Boolean
dim starthotkey2 as Boolean
starthotkey =
starthotkey2 = GetAsyncKeyState(Keys.V)

if starthotkey = true and starthotkey2 = true Then
Command
End If

MrMsPainter