コード例 #1
0
ファイル: FormCliente.cs プロジェクト: UML-Tesis/Sifa
 private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         e.Handled = true;
         this.txt1Apellido.Focus();
     }
 }
コード例 #2
0
ファイル: FormCliente.cs プロジェクト: UML-Tesis/Sifa
 private void txtAlias_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
     if ((int)e.KeyChar == (int)Keys.Enter)
     {
         e.Handled = true;
         this.mtxtCedula.Focus();
     }
 }
コード例 #3
0
ファイル: FormEmpleado.cs プロジェクト: UML-Tesis/Sifa
 private void txt2Apellido_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
コード例 #4
0
ファイル: FormEmpleado.cs プロジェクト: UML-Tesis/Sifa
 private void txt1Nombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
コード例 #5
0
ファイル: FormPresentacion.cs プロジェクト: UML-Tesis/Sifa
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }