Will that work with whatever object I send it, as in if I
Code:
clsClass.Test txtBox


Sub Test(tb as Textbox)
   Dim StrText as string
   strText = inputbox("Enter the String")
   tb.text = strText
End Sub
So the following would ask for the string and set the txtBox value on my form to the string value? Would that work?