I am reading some sample code, can somebody tell me what the two : mean in the following code?

Private Sub cboAddressList_Click()
NewAddress = Ports(cboAddressList.ListIndex)
If NewAddress <> Address Then
Address = NewAddress:
MsgBox "New Port Selected --- " + cboAddressList.Text + Chr(13) + Chr(10):
End If
End Sub