im using this code into a backgroundworker:
 iu(element.Element("link").Value, element.Element("delete").Value)
and the function is:
Private Sub iu(ByVal elo As String, ByVal elos As String)
        iudone.Show()
        iudone.TextBox1.Text = elo
        iudone.TextBox2.Text = elos
    End Sub
how i can use delegates to call iu() sub without exceptions?
the code executes a foreach elemt how shows elements and i want to show the element in another sub
