Solarion
Honorary Master
- Joined
- Nov 14, 2012
- Messages
- 21,886
Code:
Public Sub sendEMail()
Try
'Do some stuff in here
Catch ex As Exception
My.Application.Log.WriteException(ex, _
TraceEventType.Error, _
"Exception with argument " & ex.Message & ".")
Finally
MessageBox.Show("Email successfully sent")
End Try
I have one question. Where do I find this log?
Last edited: