QUOTE(-)HyDrO(- @ Nov 5 2005, 11:52 PM)
first of all.. im using visual basic 2005 BETA to make this..
wot i want to do, is make a controllpad for winamp so u can controll it while in starcraft... plz help... wot i need to do is make the vb program get access to winamp and change the pause/play, volume, and track number...
this is pretty much to introduce me to what visual basic is capible of..
[right][snapback]349356[/snapback][/right]
In VB6, you would use the API SendMessage
QUOTE
Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
I'm pretty sure Visual Basic .NET already has API functions built in, so try calling that. Look up the api on google to find out what to exactly send.