Red de conocimiento informático - Material del sitio web - Cómo hacer que las fotos en DataGridView aparezcan en PictureBox en VB.NET

Cómo hacer que las fotos en DataGridView aparezcan en PictureBox en VB.NET

byte[] bytes=(byte[])dt.Rows[0]["Foto"];

System.IO.MemoryStream ms=new System.IO.MemoryStream(bytes);

pictureBox1.Image=Image.FromStream(ms);

PictureBox1.Image=Image.FromStream(ms)image=Image.FromStream(ms);

pictureBox1.