Is it my understanding that parameters are, by default, passed ByRef. So, with that in mind, why do some people actually type in ByRef?
Example:
Correct?
Example:
Code:
Private Sub Whatever(ByRef strString As String)
'is exactly the same as
Private Sub Whatever(strString As String)