I have recently started using iTunes instead of Winamp. And so, I have been working on a project in Visual Basic 6.0 to create a remote control for it. I have a working model consisting of buttons. However, I would like to assign a hotkey or combination hotkey to some of the buttons, enabling me to control iTunes from within a game. Heres a snippet of the code assigned to a button:
So my question is how do I go about assigning say 'Alt + Numpad+' to this button?
Code:
Private Sub UpVol_Click() Dim iTunes As iTunesApp iTunesApp.SoundVolume = iTunesApp.SoundVolume + 10 Set iTunes = Nothing End Sub
Comment