有没有可用的VBP(Visual Basic 6项目)文件?

sil*_*ost 3 vb6 visual-studio-6

是否有关于VBP(Visual Basic项目)文件中使用的键/值的任何可用文档?我正在努力更好地理解VBP如何在内部处理引用.

示例行:

参考=*\∈{BF204980-5E29-4945-AEB5-DDB284C568D3}#1.0#0#..\Project1.dll#PROJECT1

Igo*_*sky 6

参考语法在[MS-OVBA]中描述:

LibidReference     = "*\" LibidReferenceKind LibidGuid 
                     "#" LibidMajorVersion "." LibidMinorVersion 
                     "#" LibidLcid 
                     "#" LibidPath 
                     "#" LibidRegName

<LibidReferenceKind>: 

%x47 (G) <LibidPath> specifies a Windows file path.

%x48 (H) <LibidPath> specifies a Macintosh path.    

<LibidGuid>: The GUID of the Automation type library.

<MajorVersion>: An unsigned integer that specifies the
major version of the Automation type library.

<LibidMinorVersion>: An unsigned integer that specifies the
minor version of the Automation type library.

<LibidLcid>: The LCID of the Automation type library.

<LibidPath>: The path to the Automation type library.

<LibidRegName>: The Automation type library’s display name
Run Code Online (Sandbox Code Playgroud)

  • <MajorVersion>也是Hex(我有一个1e.0的DLL) (2认同)