private void Box_Vin_Digits_6_TextChanged(object sender, EventArgs e)
 {
     if (Box_Vin_Digits_6.Text.Length >= 2)
     {
         Box_Vin_Digits_7.Focus();
     }
 }
 private void Box_Vin_Digits_7_Enter(object sender, EventArgs e)
 {
     Box_Vin_Digits_7.SelectAll();
 }
 private void Box_Vin_Digits_7_Click(object sender, EventArgs e)
 {
     Box_Vin_Digits_7.Focus();
     Box_Vin_Digits_7.SelectAll();
 }