WhiteTiger
Programmer
How do you find out what parameters there are in an API call...you constantly see things like
But how do you guys know that,
should equal what it does for doing certian things?...
Is there an API resource that you can look up examples on how all the API calls are used and stuff like that? Regards,
Anth
ny
----------------------------------------
"You say [red]insanity[/red] like it's a BAD THING!"
Code:
Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Long, ByVal dwExtraInfo As Long)
But how do you guys know that,
Code:
Private Const VK_MENU = &H12
Private Const VK_SNAPSHOT = &H2C
Private Const KEYEVENTF_KEYUP = &H2
Public Const SnapScreen = &H0
Public Const SnapWindow = &H1
Is there an API resource that you can look up examples on how all the API calls are used and stuff like that? Regards,
Anth
----------------------------------------
"You say [red]insanity[/red] like it's a BAD THING!"