R
Robert Crandal
Is it possible to return a string "by reference" through a string
parameter?
Here's what I'm trying to do:
--------------------------------------------------------------------
Sub GiveBackString (ByRef targ as String)
targ = "Hello" ' This string is returned through 'targ' variable???
End
parameter?
Here's what I'm trying to do:
--------------------------------------------------------------------
Sub GiveBackString (ByRef targ as String)
targ = "Hello" ' This string is returned through 'targ' variable???
End