Usually Passing Form Name I use the code:

Private Sub Test1
Test2(me)
End Sub

Private Sub Test2(FormName as Form)
FormName.Unload
End Sub

But How Do I pass the TextBox Control Name to another Sub/Function?

Please help..