Hi All

I have been given this example code but it's in c#.
I am a c# developer but I have to write this stuff in VB and have little knowledge of VB + the online convertors don't work with this.

Code:
report.Error += delegate(object innerSender, ErrorEventArgs eventArgs)
        {
            this.ReportViewer.Report = null;
            this.Label1.Text = eventArgs.Exception.Message.ToString();
        };
Thanks folks :-)