View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Robert Crandal[_2_] Robert Crandal[_2_] is offline
external usenet poster
 
Posts: 158
Default Return a string by reference?

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