hi im not sure if this goes in this section but here goes

i have done some code to search an excel document using a userform but ive run accross a small problem, the problem being when i click the search button it finds what i require but i would like it to display the contents of the whole row instead of just the item i searched for i have posted my code below if you can help i would be greatful.

VB Code:
  1. If OptionButton1.Value = True Then
  2. With Worksheets(1).Range("A3:E65536")
  3.     Set c = .Find(TextBox1.Text, LookIn:=xlValues)
  4.     If Not c Is Nothing Then
  5.     firstAddress = c.Address
  6.        
  7.         MsgBox "This Staff Number Belongs To:", vbOKOnly, "Staff Number Found"
  8.        
  9.     Else
  10.         MsgBox "No Such Staff Number", vbOKOnly, "Staff Number Not Found"
  11.     End If
  12. End With
  13. End If