I am having problems with the following code. I want to make it so that when the user hovers over the button, the background image changes. Any help is appreciated. Thanks.
VB Code:
Private Sub btnUpload_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpload.MouseHover Dim strBg As Image strBg = Application.StartupPath & "\btnbg.jpeg" btnUpload.BackgroundImage = strBg End Sub




Reply With Quote