0

だから私は小さなアプリケーションをやっているだけで、ここに次のような節があります

If hoursPerPeriod > 0 And salary > 0 Then
        If numberPayPeriods = 0 Then
            MessageBox.Show("Please enter number of pay periods!")
        End If
        txtCalculatedPaycheckGross.Text = salary / numberPayPeriods
    End If

したがって、ユーザーが給与情報を入力し、時給と給与を入力している場合、プログラムは給与のみを計算します。ただし、支払期間ボックスの数が 0 の場合は、それが修正されるまで何も計算しません。問題は、値を入力するように求めるメッセージボックスを表示した後、コードが続行しないようにするにはどうすればよいですか?

4

1 に答える 1

3
If hoursPerPeriod > 0 And salary > 0 Then
        If numberPayPeriods = 0 Then
            MessageBox.Show("Please enter number of pay periods!")
        else
            txtCalculatedPaycheckGross.Text = salary / numberPayPeriods
        end if
    End If
于 2013-10-13T20:50:55.383 に答える