error de codigo

Publié le: 15 février 2022
sur la chaîne: 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)
{

}


Sur cette page du site, vous pouvez voir la vidéo en ligne error de codigo durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur Anonimoch95 15 février 2022, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 75 fois et il a aimé 1 téléspectateurs. Bon visionnage!