I'm pretty sure the following code included in a procedure is
excluded from the runtime file including the string "Begin DoLayer1".
The question is What(??) is included in the runtime if handled as a procedure call like:
Procedure in Common Module
I'm guessing the call and the string are included in the runtime -- which would increase the runtime significantly -- but would like to confirm.
excluded from the runtime file including the string "Begin DoLayer1".
Code:
#If kDEBUGON Then
Debug.Print "Begin DoLayer1"
#End If
Code:
Call MyDebug("Begin DoLayer1")
Code:
Private Sub MyDebug(strIn as String)
#If kDEBUGON Then
Debug.Print strIn
#End If
End Sub