What is the purpose of the colon?
e. g.:
Dim objConn : Set objConn = OpenConnection()`
Is the colon used to combine the two statements
Yes this is correct. In VB style languages, including VBScript, the colon is an end of statement token. It allows you to place several statements on the same line.