Private Sub DataGrid1_KeyPress(KeyAscii As Integer)
Select Case DataGrid1.Col
Case 0
'acepta cualquier caracter (número o letra) para la primera
'posicion
If ((KeyAscii <= 13) Or (KeyAscii >= 48) And (KeyAscii <= 57)) Then 'sólo números
KeyAscii = KeyAscii
Else
KeyAscii = 0
End If
Case 1
If ((KeyAscii <= 13) Or (KeyAscii >= 65 And KeyAscii <= 90) Or (KeyAscii >= 97 And KeyAscii <= 122)) Then ' Solo letras
KeyAscii = KeyAscii
Else
KeyAscii = 0
End If
Case 2
KeyAscii = KeyAscii ' Letras, números y cualquier caracter
End Select
End Sub