
09/11/2011, 12:06
|
| | Fecha de Ingreso: abril-2005
Mensajes: 483
Antigüedad: 19 años, 11 meses Puntos: 3 | |
Respuesta: Obtener el id de la tabla mediante un combobox
Código:
Dim IdProducto As Integer = Convert.ToInt32(CoClasificacion.SelectedValue)
Dim Descripcion As String = Convert.ToString(CoClasificacion.Text)
MsgBox(String.Format("Id: {1} {0}Descripcion: {2}", Environment.NewLine, IdProducto, Descripcion))
|