So I have been writing vba for a few years now but something I often see that I never do is declaring variables inside the sub line.
For example:
sub my_routine (strSearch As String, variable2 as long, variable3 as integer)
Why do people do it like this? I would normally do it like.
sub...