引用对话框:location c:\windows\system32\msvbvm60.dll\3 ,这个位置不明白,\3是什么意思呀?
------------------------
我想根据引用对话框,查找相对应的文件都是哪些,可是上面的文件位置我看不明白.
因为 \3 不知是什么意思?

解决方案 »

  1.   

    就是msvbvm60.dll
    你引用了之后会看到后面多了个\3的,那大概是引用里面的一些不同的类的区别而已
      

  2.   

    我自己不知道,我幫你在網上查了查
    解釋如下:
    Well, C:\WINDOWS\system32\VBSCRIPT.DLL\3 means a file called 3 (no extensions or anything) in the path C:\WINDOWS\system32\VBSCRIPT.DLL\.  So, if that's the file it's saying it can't find, then whether or not a file called vbscript.dll exists where it's supposed to might not be relevant.
      

  3.   

    Um, not exactly. It actually represents one of multiple Interfaces that the library provides; in this case, \3 of the class library in VBSCRIPT.DLL is the "Microsoft VBScript Regular Expressions 5.5" interface (\2 is  "Microsoft VBScript Regular Expressions 1.0")
      

  4.   

    msvbvm60.dll是个复杂的东西,他里面不但封装了很多API,也有很多类。但不是每一个类在程序中的应用的上,为了节省资源,所以对类进行了分组。比如msvbvm60.dll\0这个组保存了控件类(按钮,文本框等),msvbvm60.dll\3这个类保存了的vb绝大部分的函数。
      

  5.   

    \3是msvbvm60.dll里面的第三个类分支