messageboxbuttons.yesno を使用してテキスト ボックスをクリアしようとしています。彼が別の変換を開始することを選択した場合は、テキスト ボックスをクリアします。何が悪いのかわからない。パブリック クラス Form1
Private Sub BtnFah_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnFah.Click
Try
Dim intFah As Integer
intFah = CInt(TxtBoxTemp.Text)
intFah = (intFah * 9) / 5 - 32
MessageBox.Show(intFah.ToString & ControlChars.CrLf & "Would you like to start another temp conversion?", "Result", MessageBoxButtons.YesNo)
If intFah = Windows.Forms.DialogResult.Yes Then
TxtBoxTemp.Clear()
ElseIf intFah = Windows.Forms.DialogResult.No Then
End If
Catch
MessageBox.Show("Would you like to start another temp conversion?", "System Error", MessageBoxButtons.YesNo)
End Try
End Sub
End Class