frmError.vb
上传用户:szledliu
上传日期:2021-01-29
资源大小:13805k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. Public Class frmError
  2.     Public err As Exception
  3.     Private Sub frmError_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  4.         lblErr.Text = "Error Message: " & err.Message.ToString & vbCrLf & _
  5.         "Stack Trace: " & err.StackTrace.ToString
  6.     End Sub
  7.     Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
  8.         Me.Close()
  9.     End Sub
  10.     Private Sub btnSend_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSend.Click
  11.         MessageBox.Show("You could send the error info to a webservice, or an html form that takes the error data" & _
  12.         vbCrLf & "and sends an email, stores to a data source or both." & vbCrLf & vbCrLf & _
  13.         "This form is only one example of what to do with errors.", "Tip", MessageBoxButtons.OK, MessageBoxIcon.Information)
  14.     End Sub
  15. End Class