0
Hello, developers!
I need help with my MRU calculation program.
When I input the data with the meter/seconds radio button active, and then select on the km/h radio button it converts the data correctly.
Already when I am in km/h, and I click on the radio button meters/seconds, it is not doing the conversion...
private void radMetrosSegundos_CheckedChanged(object sender, EventArgs e)
{
lblEspacoInicialMedida.Text = "metros";
lblVelocidadeMedida.Text = "metros/segundos";
lblTempoMedida.Text = "segundos";
lblEspacoFinalTipo.Text = "metros";
/* Essa é a formula mais não funciona quando eu clico em metros /segundos.
numEspacoInicial.Value = numEspacoInicial.Value * 1000; // KM para metro
numTempo.Value = numTempo.Value * 3600; // hora para segundos
numVelocidade.Value = numVelocidade.Value / Convert.ToDecimal(3.6); //segundos para hora
*/
}
private void radKMH_CheckedChanged(object sender, EventArgs e)
{
lblEspacoInicialMedida.Text = "Km";
lblVelocidadeMedida.Text = "Km/h";
lblTempoMedida.Text = "Horas";
lblEspacoFinalTipo.Text = "Km";
//Aqui funciona corretamente
numEspacoInicial.Value = numEspacoInicial.Value / 1000; // Metro para KM
numTempo.Value = numTempo.Value / 3600; // segundos para hora
numVelocidade.Value = numVelocidade.Value * Convert.ToDecimal(3.6); // m/s para km/h
}
Thanks in advance!
At first the function is correct. Check if the event 'radMetrosSegundos_CheckedChanged' is related to Radiobutton.
– Shai Pinho