What is the purpose of the colon?
e. g.:
Dim objConn : Set objConn = OpenConnection()`
Is the colon used to combine the two statements
What you have stated is correct. The purpose of the colon is to combine 2 otherwise separate lines into a single line. It works on most statements, but not all.