The code for this is:
'IMAGE HANDLING
Dim bytes() As Byte = DS.Tables("Location").Rows(0).Item(4)
Dim ProductImage As Image = Image.FromStream(New System.IO.MemoryStream(bytes))
pic_ProductImageDisplay.Image = ProductImage
pic_ProductImageDisplay.Load()
The error occurs line 3 stating "ArgumentException was unhandled: Parameter is not valid."
Any idea on a solution to this problem?