Sorry, should have expanded on the question.
I can invoke a delegate within a forms class by creating a delegate
sub for another assembly event, small example below.
Private Delegate Sub dlgClient(ByVal index As integer)
private sub....
Dim dlg As New dlgClient(AddressOf Client)
me.invoke(dlg, New Object() {index})
end sub
Private Sub Client(ByVal index As Integer)
...
My problem is that im trying to do this within a Module because i
dont want to start my application from a form, however i do want to
display a form later. So Im currently using ...dlg.invoke... but
when i try to show the form from within the sub Client it runs the
code fine but the form doesnt show.
Im open to suggestions...
Thanks..