Hello,

I'm attempting to pass a property to a Sub using ByRef.

eg.

VB Code:
  1. MySub Text1.Text
  2.  
  3. Public Sub MySub(ByRef sText As String)
  4.   sText = "Hello"
  5. End Sub

But the Property doesn't change. Can VB not do this, or is it just me?