blob in database from url

  • Thread starter Thread starter geertm
  • Start date Start date
Hi Geert

You mean something as this?

Cor

\\\
Dim ms As New MemoryStream
Dim arrImage() As Byte
originalImage.Save(ms, ImageFormat.Bmp)
arrImage = ms.GetBuffer
dsFototabel.Tables(0).Rows(0)("foto") = arrImage
///
 
Yes, but how do you get the jpgimage from the web
Cor said:
Hi Geert

You mean something as this?

Cor

\\\
Dim ms As New MemoryStream
Dim arrImage() As Byte
originalImage.Save(ms, ImageFormat.Bmp)
arrImage = ms.GetBuffer
dsFototabel.Tables(0).Rows(0)("foto") = arrImage
///
 
Back
Top