I don't fully understand the concept of late and early binding. I recently started using option strict and my code fell apart arrgh!

I fixed all of my errors except four of them and here is a sample of what I have left:

VB Code:
  1. Private Sub tab_25_btnClearAll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _
  2.     Handles tab_25_btnClearAll.Click
  3.         'Purpose : Clears the CU tabpage
  4.  
  5.         Try
  6.             Client.ClearTab(sender.parent)
  7.             tab_25_optNo.Checked = True
  8.  
  9.         Catch ex As Exception
  10.             ErrorMessage(ex.Message)
  11.  
  12.         End Try
  13.     End Sub

the error is "option strict disallows late binding' and it highlights the "sender.parent" section. what can I do to correct this?