Quiero hacer un modulo en VB, donde pueda crear una función que me permita validar un textbox que solo ingrese numero ?
Module Module1
Public Function validacionumerica (Formulario As Form) As Integer
Dim numero As Integer = True
If Char.IsDigit(e.KeyChar) Then
e.Handled = False
ElseIf Char.IsControl(e.KeyChar) Then
e.Handled = False
Else
e.Handled = True
End If
End Function
End Module