PDA

View Full Version : [Help] User-Definable Function Strings



iPants
04-24-2008, 09:58 PM
I want to make User Defineable Function Strings EXAMPLE:
Public Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer i want the part in bold to read a string from textbox i tried using this
Public Declare Function Form1.Text1.Text Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
but it doesnt work HELP ME PLEASE

AlexSleyore
04-24-2008, 10:34 PM
I want to make User Defineable Function Strings EXAMPLE:
Public Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer i want the part in bold to read a string from textbox i tried using this
Public Declare Function Form1.Text1.Text Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
but it doesnt work HELP ME PLEASE

cant be done and no point to it im ASSUMING you want to make your module undetected well im sorry to burst your bubble but function names are lot during compiling anyways... (aka it don matter what you name them their all the same)

CptM0rg@n
04-25-2008, 07:16 AM
when you are making a hack in vb lets say superjump, u use GetAsyncKeyState for the hot key, but u repleace that with the code next to GetAsyncKeyState in your module to use the hotkey, the way u explained it was real confusing, i didnt really understand it