本文介绍了从数据库文件加载字节数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


我正在使用以下代码从数据库获取数据并加载到图片框

Hi,
I am using following code to get data from database and load to picture box

Dim vrPicFromDB = IO.File.ReadAllBytes(DsPic.tblPicTest.Item("Picture"))
        Dim ms As New MemoryStream(vrPicFromDB)
        PictureBox1.Image = Image.FromStream(ms)



它在语句的DsPic.tblPicTest.Item("Picture"))部分给出错误.
我也尝试过



It gives error on DsPic.tblPicTest.Item("Picture")) portion of the statement.
I also tried

CByte(DsPic.tblPicTest.Item("Picture")))


但它给出了相同的错误.

请告知如何修复.
谢谢
Furqan


but it gives the same error.

Please advise how to fix it.
Thanks
Furqan

推荐答案



这篇关于从数据库文件加载字节数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 18:54