Vb 6 中的系统方法、变量和属性
我正在寻找一个可以让我访问 VB6 中的系统方法、变量和属性的源代码。我实际上是在比较 VB6 程序中的所有变量和方法,并且必须确定这是系统变量或方法还是用户定义的实体。
我很感激任何帮助。
谢谢,
席德
I am looking for a source which can give me access to system methods, variables and properties in VB6. I am actually comparing all the variables and methods in a VB6 program and have to determine if this is a System variable or method or a user defined entity.
I appreciate any help.
Thanks,
Sid
请参阅VB6 语言参考。请注意,没有“系统”对象,并且 VB/VBA/OLE 类型库的连接对于所有计算机都是相同的。
Slaks 提到的对象浏览器还会告诉您属性和方法的定义位置
。
See the sub pages of the VB6 language reference in MSDN. Note that there is no "System" object and the conects of the VB/VBA/OLE type libraries will be the same for all machines.
The object browser that Slaks mentioned also tell you where properties and methods are defined
.