Obligar a escribir en un textbox
Tengo un formulario con datos personales y aveces las personas encargadas de llenar estos formularios no escriben todos los datos, estoy tratado de adaptar este código para forzar a que escriban en todos los textbox, pero el archivo se me bloquea, agradezco la ayuda para ver si lo puedo echar a andar. Gracias.
Private Sub Text1_LostFocus()
If Text1.Text = "" Then
MsgBox ("No has escrito el numero de identificacion")
Text1.SetFocus
Else
End If
End Sub
Private Sub Text2_LostFocus()
If Text2.Text = "" Then
MsgBox ("No has escrito el primer nombre")
Text2.SetFocus
Else
End If
End Sub
Private Sub Text3_LostFocus()
If Text3.Text = "" Then
MsgBox ("No has escrito el primer apellido")
Text3.SetFocus
Else
End If
End Sub
Private Sub Text1_LostFocus()
If Text1.Text = "" Then
MsgBox ("No has escrito el numero de identificacion")
Text1.SetFocus
Else
End If
End Sub
Private Sub Text2_LostFocus()
If Text2.Text = "" Then
MsgBox ("No has escrito el primer nombre")
Text2.SetFocus
Else
End If
End Sub
Private Sub Text3_LostFocus()
If Text3.Text = "" Then
MsgBox ("No has escrito el primer apellido")
Text3.SetFocus
Else
End If
End Sub
1 respuesta
Respuesta de ifrancoz
1