How to check type of object in VB 6.0 we have to modify existing code to use \'typeof\' method, Is there any method like moving cursor over object variable or like quick watch w
Right click object variable and select "Quick Info" from context menu.
Try the TypeName Function.
In your example if you enter TypeName(fs) in the Immediate Window you would get back "FileSystemObject"
TypeName(fs)