Image

D

darren

i captured an image from windows CE and stored in a sql server database, now
i need to displayin an msaccess report, but it will not display. all i get is
a blank box. i gust i need to play with the data something like
Dim myImage As Image
Dim arrayImage() As Byte
arrayImage = CType(Me.DataSet11.Tables(0).Rows(i)("Signature"),
Byte())
Dim ms As New IO.MemoryStream(arrayImage)
myImage = Image.FromStream(ms)
Me.PictureBox1.Image = myImage
before the image is loaded
i dont know how to do it in access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top