V Vincenzo Member Licensed User Longtime User May 26, 2013 #1 I can check the type of object? for example : Dim obj1 as MyObject1 Dim obj2 as MyObject2 Dim obj as Object ..... .... obj=obj1 ... ... obj=obj2 ... ... i want know if obj is type MyObject1 or type MyObject2. is possible?
I can check the type of object? for example : Dim obj1 as MyObject1 Dim obj2 as MyObject2 Dim obj as Object ..... .... obj=obj1 ... ... obj=obj2 ... ... i want know if obj is type MyObject1 or type MyObject2. is possible?
agraham Expert Licensed User Longtime User May 26, 2013 #2 Try B4X: If Obj Is MyObject1 Then ... End If Upvote 0