When I was in college learning programming using C++ I ran across a few arithmetic operators that do not exist in VBA. Namely ++, +=, -= and --.
Examples:

SearchCount++ is the same as SearchCount=SearchCount+1
SearchCount+=Results is the same as SearchCount=SearchCount+Results

And the same relationship hold true for -- and -=.

Is there anyway to use VBA to define these operators?