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:
  1. Private Sub btnUpload_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpload.MouseHover
  2.         Dim strBg As Image
  3.  
  4.         strBg = Application.StartupPath & "\btnbg.jpeg"
  5.  
  6.         btnUpload.BackgroundImage = strBg
  7.     End Sub