Hi There Guys,
I'm just curious as to which one of these 3 error syntaxes in the try/catch is right.
code:
vb.net Code:
try Catch ex As Exception MessageBox.Show(ex.Message.ToString()) MessageBox.Show(ex.Message) MessageBox.Show(ex.ToString) End Try
Is there any advanatges to either of them or all they all ok?
thanks for any info guys
Graham




Reply With Quote