Hi!!

I have Option Strict On and this code:
vb Code:
  1. Private Sub Bs_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles B1.MouseEnter, B2.MouseEnter, B3.MouseEnter, B4.MouseEnter, B5.MouseEnter
  2.     sender.BackgroundImage = My.Resources.BHover
  3. End Sub
And i get this error: "Option Strict On disallows late binding". I went searching how could i fix it. And the only thing i could find has to turn option strict off.

Is there anyway of fixing with out turning strict off?