如何在VB 6.0中恢复为imagelist控件上传的图像
我有一个 VB 6.0 应用程序,其中包含图像列表控件内的一些图像。我想知道这些图像存储在系统中的位置(因为我想在另一个应用程序中使用这些图像,并且系统中没有单独的图像)。
因此,唯一的方法是从 Visual Basic 6.0 项目中获取图像。 我们有类似 .Net 的资源文件夹吗?
I have a VB 6.0 application which contains some images inside a imagelist control. I want to know where these images get stored in the system (because I want to use these images in another application and I don't have the images separately in the system).
So, the only way is to take the images from Visual Basic 6.0 project.
Do we have anything like resource folder similar to .Net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Microsoft Windows Common Controls 5.0 或 6.0
的引用 (Ctrl+T)Form1
ImageList1
使用此代码
Microsoft Windows Common Controls 5.0 or 6.0
Form1
ImageList1
Use this code
我前段时间遇到过同样的问题。我最终以图像列表的形式编写了一个小函数,“手动”将图像列表中的每个图像保存到磁盘。
I ran across the same problem some time ago. I ended up writing a small function in the form with the imagelist that "manually" saved each image in the imagelist to disk.