Does anyone know how to compare two objects together in a condition? For Example:

Code:
    Dim oObj1 As cClass1
    Dim oObj2 As cClass2
    
    If oObj1 = oObj2 Then
        MsgBox ("Same Class")
    Else
        MsgBox ("Different Class")
    End If
Thanks!