本文介绍了如何在VB 6.0中提取嵌入的OLE对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

VB 6.0提供了一种功能,可以将任何类型的文件嵌入到基于VB6.0的应用程序(实际上称为OLE对象)中,并使用代码OLE1.DoVerb 1访问它。但是,当涉及提取文件而不是使用上面编写的代码访问它时,我无法找到实现提取方法的正确方法。有没有办法提取存储在自定义位置的OLE对象(即any.exe应用程序)中的文件? (即要提取到C:\Users\UserName\Desktop\Folder)

VB 6.0 offers a feature to embed any type of file into your VB6.0-Based application (which is actually called OLE Objects) and access it with the code "OLE1.DoVerb 1". However, when it comes to extraction of the file rather than accessing it with the code that is written above, I can't manage to find a proper way to achieve the extraction method. Is there a way to extract the file that is stored inside the OLE object (i.e. any.exe application) in a custom location? (i.e. To be extracted to C:\Users\UserName\Desktop\Folder)

推荐答案

这篇关于如何在VB 6.0中提取嵌入的OLE对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 01:53