Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/02/2012, 16:39
Avatar de jhodmar
jhodmar
 
Fecha de Ingreso: febrero-2012
Ubicación: Medellin
Mensajes: 52
Antigüedad: 12 años, 2 meses
Puntos: 1
Respuesta: Como validar campo Null de una DB mysql en vb.net

yo valido asi...
Código:
If Not IsDBNull(RSform.Fields(10).Value) Then
                        Consultacombo = RSform.Fields(10).Value
                    Else
                        Consultacombo = ""
                    End If
siendo
Código:
Public RSform As ADODB.Recordset