User546194788 posted
In a project, I use try...catch...end try to track error and created two functions.
One function to send an email including "ex.ToString()" to me.
The another function displays "ex.Message" on the screen.
What is the difference between "ex.ToString()" and "ex.Message"?
try
'''''
Catch ex As Exception
mydisplayfunctionToEmail(ex.ToString())
mydisplayfunctionOnScreen(ex.Message)
End Try