Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/05/2013, 15:10
erickrpv
 
Fecha de Ingreso: abril-2013
Ubicación: Lima
Mensajes: 83
Antigüedad: 11 años, 1 mes
Puntos: 1
Respuesta: validar textbox vb.net

haz esto, crea una función y listo!
Cita:
Function Validar() As Boolean
Validar = True
If Trim(Textbox1.Text) = "" Then
MsgBox("Debe Ingresar El Codigo De La Persona ,por favor verifique.", 16, "Mensaje del Sistema")
LBL_percod.Focus()
Validar = False
Exit Function
End If
End Function