public void btnVer_Click(object sender, EventArgs e) { string TextoN3; string TextoN4; float N3; float N4; float Resultado; float Resulatdo2; float Resultado3; float Resultado4; float Resultado5; float Resultado6; double ISR = 0.23; double Social = 0.05; double Retiro = 0.10; TextoN3 = txtTotal_Inicial.Text; TextoN4 = txtPrestamo.Text; N3 = Convert.ToInt32(txtTotal_Inicial.Text); N4 = Convert.ToInt32(txtPrestamo.Text); //ISR Resultado = (float)(N3 * ISR); txtISR.Text = Resultado.ToString(); //Ahorro para Retiro Resulatdo2 = (float)(N3 * Retiro); txtRetiro.Text = Resulatdo2.ToString(); //Seguridad Social Resultado3 = (float)(N3 * Social); txtSocial.Text = Resultado3.ToString(); //Prestamo Resultado4 = N4; txtPrestamo.Text = Resultado4.ToString(); Resultado5 = Resultado + Resulatdo2 + Resultado3 + Resultado4; Resultado6 = N3 - Resultado5; txtSueldo_Final.Text = Resultado6.ToString(); }
private void btnsueldofinal_Click(object sender, EventArgs e) { String txtN3; string txtN4; float N3; float N4; float Resultado; float Resultado2; float Resultado3; float Resultado4; float Resultado5; float Resultado6; double icr = 0.23; double seguro = 0.05; double ahorro = 0.10; txtN3 = txtinicial.Text; txtN4 = txtprestamo.Text; N3 = Convert.ToInt32(txtinicial.Text); N4 = Convert.ToInt32(txtprestamo.Text); Resultado = (float)(N3 * icr); txtisr.Text = Resultado.ToString(); Resultado2 = (float)(N3 * seguro); txtseguro.Text = Resultado2.ToString(); Resultado3 = (float)(N3 * ahorro); txtahorro.Text = Resultado3.ToString(); Resultado4 = N4; txtprestamo.Text = Resultado4.ToString(); Resultado5 = Resultado + Resultado2 + Resultado3 + Resultado4; Resultado6 = N3 - Resultado5; txtfinal.Text = Resultado6.ToString(); }