Dim a As Byte() = DataSet.Tables("Articulos").Rows(0).Item("Imagen") Dim b As New System.IO.MemoryStream(a, 0, a.Length) b.Write(a, 0, a.Length) PictureBox1.Image = Image.FromStream(b)