error de codigo

Published: 15 February 2022
on channel: Anonimoch95
75
1

codigo :

private void txtUnidadPorLote_TextChanged(object sender, EventArgs e)
{
if (txtUnidadPorLote.Text == string.Empty && txtLotes.Text == string.Empty)
{


}
else
{
this.txtUnidades.Clear();
int UnidadesPL, Lotes, TOTALU;
UnidadesPL = Convert.ToInt32(txtUnidadPorLote.Text);
Lotes = Convert.ToInt32(txtLotes.Text);

TOTALU = UnidadesPL * Lotes;

txtUnidades.Text = TOTALU.ToString();
}
}

private void txtPrecioLote_TextChanged(object sender, EventArgs e)
{

if (txtLotes.Text == string.Empty && txtPrecioLote.Text == string.Empty)
{

}
else
{
this.txtPrecioTotalLotes.Clear();
int Lotes, PrecioL, TOTALL;
PrecioL = Convert.ToInt32(txtPrecioLote.Text);
Lotes = Convert.ToInt32(txtLotes.Text);

TOTALL = PrecioL * Lotes;

txtPrecioTotalLotes.Text = TOTALL.ToString();

}
}


private void txtPrecioPorUnidad_TextChanged(object sender, EventArgs e)
{
if (txtPrecioPorUnidad.Text == string.Empty && txtUnidades.Text == string.Empty)
{

}
else
{
this.txtPrecioTotalUnidades.Clear();
int Unidades, Preciotu, TOTALPU;
Unidades = Convert.ToInt32(txtPrecioPorUnidad.Text);
Preciotu = Convert.ToInt32(txtUnidades.Text);
TOTALPU = Unidades * Preciotu;

txtPrecioTotalUnidades.Text = TOTALPU.ToString();


}
}

private void txtNumeroCelProveedor_Leave(object sender, EventArgs e)
{
if (txtNumeroCelProveedor.Text == string.Empty)
{
this.txtNumeroCelProveedor.Text = "0";
}
}

private void txtNumeroCelProveedor_Enter(object sender, EventArgs e)
{
if (txtNumeroCelProveedor.Text == "")
{
this.txtNumeroCelProveedor.Text = "0";
}
}

private void txtUnidades_TextChanged(object sender, EventArgs e)
{

}

private void txtPrecioTotalLotes_TextChanged(object sender, EventArgs e)
{

}

private void txtPrecioTotalUnidades_TextChanged(object sender, EventArgs e)
{

}


On this page of the site you can watch the video online error de codigo with a duration of hours minute second in good quality, which was uploaded by the user Anonimoch95 15 February 2022, share the link with friends and acquaintances, this video has already been watched 75 times on youtube and it was liked by 1 viewers. Enjoy your viewing!