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:
  1. try
  2.  
  3.         Catch ex As Exception
  4.  
  5.             MessageBox.Show(ex.Message.ToString())
  6.             MessageBox.Show(ex.Message)
  7.             MessageBox.Show(ex.ToString)
  8.  
  9.         End Try

Is there any advanatges to either of them or all they all ok?

thanks for any info guys

Graham