Hola gente soy nueva en esto, tengo dudas con las siguentes funciones no se bien como trabajan cada una (se que una valida numeros y la otra valida fechas) si alguien seria tan amable de explicarme la funcion de cada una. Muchas gracias
Private Sub txtnum_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtnum.KeyPress
Select Case Asc(e.KeyChar)
Case 4, 24, 4, 19, 127, 13, 9, 15, 14
Exit Sub
End Select
If IsNumeric(e.KeyChar) = False Then
MsgBox("Este carater no es un numero ( " + e.KeyChar + " )", vbCritical, "Importante")
e.KeyChar = ""
End If
End Sub
Private Sub txt_fecha_Validated(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtfec.Validated
If IsDate(sender.Text) Then
If Not sender.Text = Format(CDate(sender.text), "dd/mm/yyyy") Then
Else
MsgBox("Fecha invalida", vbOKOnly + vbCritical, "Atención")
sender.Focus()
Exit Sub
End If
Else
MsgBox("Fecha invalida", vbOKOnly + vbCritical, "Atención")
sender.Focus()
Exit Sub
End If
End Sub