I Got on Mouse Over Working
I fooled around a bit, and figured that the code:
Private Sub picBack_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim MouseOverPic As Picture
Set MouseOverPic = LoadPicture("C:\dominatrix\Buttons\BackOnMouse.bmp")
Set picBack.Picture = MouseOverPic
End Sub
and:
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Set picBack.Picture = LoadPicture("C:\dominatrix\Buttons\Back.bmp")
End Sub
Have virtually the same effect as a mouse over... ound wont be hard to do now ethier.