Ho sto Cod:
codice:
private void calcola_Click(object sender, System.EventArgs e) 
		{	
			int lir = int.Parse(this.txtLire.Text);
			int eur = int.Parse(this.txtEuro.Text);
			int tot_lire, tot_euro;
			int CAMBIO = 1936;
			if (this.txtEuro.Text != " " && this.txtLire.Text != " ")
			{
				try
				{
					tot_lire = lir*CAMBIO;
					tot_euro = eur/CAMBIO;
					this.txtEuro.Text = tot_euro.ToString();
					this.txtLire.Text = tot_lire.ToString();
				}catch(System.OverflowException err){
				this.lbError.Text = err.ToString();
				}
	
			}
Ma mi da errore;