Recently I turned option strict on in my new applications. I understand that when its on implicit conversion are not allowed. I also understand that this is a good thing. However I'm getting a few errors that I need to cleanup. Also a good thing. The problem I'm having is that I don't have a good grip on the definitions of Late and Early binding. I have the following event that has a late binding error in the eventSender.Checked portion of my code. Can someone explain this to me in layman's terms? I'd really appreciate it. I've looked it up and still don't get it.
Visual Basic:
Private Sub OptArch_CheckedChanged(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles OptArch.CheckedChanged
If eventSender.Checked Then
SaveDepart = "Arch"
End If
End Sub