J
Jennifer Murphy
It is my understanding that I should use the ByVal keyword if I am
planning to modify the parameter. Is that correct?
Example:
Public Sub Write2File(byval FileID As String, Data As String)
FileID = FileID & ".txt"
....
planning to modify the parameter. Is that correct?
Example:
Public Sub Write2File(byval FileID As String, Data As String)
FileID = FileID & ".txt"
....