Open parentheses should not have any space after them.

Anti-pattern

' The space after Foo is unnecessary
Function Foo( Bar)
End Function

Best practice

Function Foo(Bar)
End Function