
ayuda!!! pasar imagen de datagrid a picturebox
Publicado por Jesus Hazael (4 intervenciones) el 12/02/2016 17:50:31
hola necesito de su ayuda con un problema que tengo, hasta ahorita e pasado con un clic en la celda del datagrid mis datos a textbox pero ahora necesito pasar una imagen a un picturebox alguien que me ayude por favor, así pase los datos.
de antemano muchas gracias.
de antemano muchas gracias.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Private Sub vistaalumnos_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles vistaalumnos.CellClick
Dim i As Integer
i = vistaalumnos.CurrentRow.Index
txtNOMBRE.Text = vistaalumnos.Item(1, i).Value()
txtAPELLIDOP.Text = vistaalumnos.Item(2, i).Value()
txtAPELLIDOM.Text = vistaalumnos.Item(3, i).Value()
txtGRUPO.Text = vistaalumnos.Item(4, i).Value()
txtTURNO.Text = vistaalumnos.Item(5, i).Value()
txtCONTROL.Text = vistaalumnos.Item(6, i).Value()
txtLIC.Text = vistaalumnos.Item(7, i).Value()
txtPERIODO.Text = vistaalumnos.Item(8, i).Value()
txtTELEFONO.Text = vistaalumnos.Item(9, i).Value()
txtCORREO.Text = vistaalumnos.Item(10, i).Value()
txtCURP.Text = vistaalumnos.Item(11, i).Value()
txtCUATRIMESTRE.Text = vistaalumnos.Item(12, i).Value()
Valora esta pregunta


0