T
T Cordon
How can I load an image from Access DB Table field?
Thanks
Thanks
* "Cor said:Dim abyt() As Byte
abyt = CType(ds.Tables(0).Rows(0)(0), Byte())
Dim ms As New IO.MemoryStream(abyt)
Me.PictureBox1.Image = Image.FromStream(ms)
This is all you need.