Posts by Felipe Reginaldo • 1 point
1 post
-
-1
votes3
answers431
viewsA: Upload Datagridview photo and move to picturebox - Windows Forms C#
plain as that: Memorystream ms = new Memorystream((byte[])dataGridView1.CurrentRow.Cells[0].Value ); pictureBox1.Image = Image.Fromstream(ms);