How to check type of Object in VB 6 ? - I do not want to use 'TypeOf' method

前端 未结 2 1808
独厮守ぢ
独厮守ぢ 2021-02-07 06:31

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

2条回答
  •  日久生厌
    2021-02-07 06:59

    Try the TypeName Function.

    In your example if you enter TypeName(fs) in the Immediate Window you would get back "FileSystemObject"

提交回复
热议问题