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
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