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

前端 未结 2 1761
独厮守ぢ
独厮守ぢ 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:52

    Right click object variable and select "Quick Info" from context menu.

    0 讨论(0)
  • 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"

    0 讨论(0)
提交回复
热议问题