Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 VB 6 中检查对象的类型 - 除了 'TypeName' 还有其他方法吗
我有一个对象,我需要使用以下代码检查它是否是某个用户定义的类:
If Collection.Items(1).object = class1 then do something end if
我不确定执行用户定义类的评估的语法是什么。
Sub tester() Dim o As New Class1 Debug.Print TypeName(o) ' "Class1" End Sub