Ejemplo n.º 1
0
 //cityTbx-->longitudeTbx
 private void CityTbx_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (char)Keys.Enter)
     {
         LongitudeTbx.Focus();
     }
 }
Ejemplo n.º 2
0
 //latitudeTbx-->longitudeTbx
 private void LatitudeTbx_KeyUp(object sender, KeyEventArgs e)
 {
     if (e.KeyValue == 38)
     {
         LongitudeTbx.Focus();
     }
 }
Ejemplo n.º 3
0
 //cityTbx-->longitudeTbx
 private void CityTbx_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyValue == 40)
     {
         LongitudeTbx.Focus();
     }
 }