こんにちは、Windows Phone 8 アプリケーションを使用していますが、例外が発生しました。
タイプ 'System.FormatException' の例外が mscorlib.ni.dll で発生しましたが、ユーザー コードで処理されませんでした
ここにコードがあります
private void Button_Click_1(object sender, RoutedEventArgs e)
{
double basestolen;
double attempedstales;
double avarege;
double putout;
if (puttext.Text.Length == 0 | basetext.Text.Length==0 )
{
MessageBox.Show(" Enter Values for Base Stolen and Putouts ");
}
basestolen = Convert.ToDouble(basetext.Text);
putout = Convert.ToDouble(puttext.Text);
attempedstales = basestolen + putout;
if (attempedstales != 0 )
{
avarege = (((basestolen / attempedstales) / 100));
avarege = avarege * 10000;
avgtext.Text = Convert.ToString(avarege);
}
else
{
MessageBox.Show("Attemped Stales Value should not be Zero");
}
}
アプリケーションが実行され、テキストボックスに値を入力しないとメッセージボックスが返されますが、その後アプリケーションは停止して上記のexptionを返しますか? 何が問題ですか?