我想出瞭如何清除文本框,但是當我在MessageBox上按否時清除了該文本框。我想清除用戶是否選擇是。如果用戶選擇否那麼我想什麼都不做。使用MessageBox清除文本框是按鈕
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
If MessageBox.Show(intFah.ToString & ControlChars.CrLf & "Would you like to start another temp conversion?", "Result", MessageBoxButtons.YesNo) Then
TxtBoxTemp.Text = String.Empty
End If
Catch
MessageBox.Show("Would you like to start another temp conversion?", "System Error", MessageBoxButtons.YesNo)
End Try
End Sub
你有downvote前檢查? – Kasnady 2013-03-20 04:24:09
你可以考慮添加一個關於OP在做什麼錯誤的評論,你的代碼是幹什麼的,等等。 – Jeff 2013-03-20 04:26:15
我只是回答了問題 – Kasnady 2013-03-20 04:28:34