05-04-2009, 10:09 PM
Egon Wrote:Simply use a picture box instead of a command button.
Other then
UseCode:Private Sub Command1_Click()
MsgBox "Woo"
End Sub
Code:Private Sub Picture1_Click()
MsgBox "Woo"
End Sub
Woot, that was very simple! Thank you

Now if I can just figure out how to make the main box transparent.
Through a little search, I came by this:
Quote:using a transparent usercontrol
1. Create a UserControl.
2. Set it's ControlContainer = True and BackStyle = Transparent
Not sure if its in the correct direction, nor how to create a UserControl.