If this:
VB Code:
  1. Private Function MyFunc(ByVal sTest As String)
The same as this:
VB Code:
  1. Private Function MyFunc(sTest As String)
Or does the second one mean ByVal/ByRef and require more CPU time? The reason I ask is that I have quite a few arguments in the function I am making and ByVal infront of all of them makes it very long when the AutoFill text pops up.