SoFunction
Updated on 2025-04-08

vbs Forgotten COM component

I have always been curious about how VbsEdit's code automatic completion is implemented. Now it seems that this COM is probably used.

For example, I want to know what interfaces does this COM component provide (providing the dll of the fso object) and can use the following code:
Copy the codeThe code is as follows:

Set tli = CreateObject("")
Set Info = ("")
For Each Interface In

Next

Or I forgot what properties and methods of the fso object have, and there is no reference documentation, so I can use the following code:
Copy the codeThe code is as follows:

Dim fso
Set fso = CreateObject("")
Set tli = CreateObject("")
Set Info = (fso)
For Each Member In

Next

Time and space are limited, so the examples given are relatively simple. For more detailed information, please refer to the document (refer to link 2 as the download address).
Exam link:
  1. RunTime COM Object Inspection
  2. FILE: : Help Files for

Original text: /programming/