Converting VB6 PropertyBag in .NET

非 Y 不嫁゛ 提交于 2019-12-02 06:09:41

问题


For certain file operations we use VB6's PropertyBag object to convert various items to a bytearray via the Content property. We then save the bytearray as part of a binary file. Later when we load the file we read back the file, read in the bytearray and reconstitute the item by using the propertybag's readproperty. We use this a lot to store images like the customer logo.

What support does .NET framework have for working with PropertyBags? Othan than writing a COM helper DLL. Are Property Bags a VB6 only construct or they are part of the general OLE/COM automation framework?

What I am hoping for is avoiding writing a VB6 helper DLL and accessing directly (via declares) the needed COM functions. I am not looking to replicate the functionality but rather converting the object stored in the bytearray into their .NET equivalent.

NOTE: I am not interested in implementing the functionality of a property bag in .NET. Only in being able to read the bytes of a saved VB6 Property Bag.


回答1:


You can check out Edanmo's Load and save pictures to byte arrays sample on his old VB6 sample page. It's very simple and can be used to "serialize" any object that implements IPersistStream interface like ADODB.Recordset for example. VB6's PropertyBag is using IPersistStream for objects and probably implements "custom" VT_Xxx variant-types serialization.

Btw, Edanmo's code snippet allows you to read images stored via copy/paste to an image column of an Access grid.




回答2:


There is 0 support for PropertyBags in .NET. Serailisation of objects replaces the PropertyBag construct.

So as I see it you have 2 choices.

  1. Byte the bullet and write the 10 or 20 line Interop dll.
  2. Analyse the contents of the serialised property bag and see if you can decode it and figure out the offsets of the images and streams etc.

I know which one I'd be heading for.




回答3:


It is worth pointing out that you can directly access the VB6 PropertyBag from .NET by referencing the VB6 runtime DLL in your project.

Add a reference to: C:\WINDOWS\SysWow64\MSVBVM60.DLL (or might by in System32 folder)

and you will then see PropertyBag in the object browser:

Note that this VB6 class does not have functionality for reading/writing to disk files, byte arrays, etc. It only manages the in-memory data (AFAIK). So this alone does not solve the issue of how to save/load data in whatever format the PropertyBag was stored in.



来源:https://stackoverflow.com/questions/569707/converting-vb6-propertybag-in-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!