こんにちは、私はこのサイトを初めて使用するので、正しく説明していない場合は申し訳ありません:
C# フォーム アプリを作成しています。アプリにエラーはありませんが、入力フィールドをクリアすると FormatException was unhandeld が返されます。
これは、この関数に適用できる唯一のコードです。
private void txtR_TextChanged(object sender, EventArgs e)
{
R = Convert.ToInt32(txtR.Text);
E2 = Convert.ToInt32(txtE2.Text);
E = R * E2;
txtE.Text = E.ToString();
R = Convert.ToInt32(txtR.Text);
D2 = Convert.ToInt32(txtD2.Text);
D = R * D2;
txtD.Text = D.ToString();
R = Convert.ToInt32(txtR.Text);
P2 = Convert.ToInt32(txtP2.Text);
P = R * P2;
txtP.Text = P.ToString();
}