Sorry about the double post guys but not too many of the VB guys know c#. Then again maybe you guys know little about VB

I have been given this example code to help solve a problem I'm working on but I need to convert it to VB which I know little about.
The various code convertors out there get it wrong.

Any ideas how VB handles this :

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