Invoking Delegate

  • Thread starter Thread starter Yama
  • Start date Start date
Y

Yama

Hi,

I created a window apps using a Delegate as follow:

Dim dlg As New loadDelegate(AddressOf loadAsync)

Form1.BeginInvoke(dlg, New Object() {Name, dataSource, dataMember})



How to transloate this to a webform?

The following will not work:

Dim dlg As New loadDelegate(AddressOf loadAsync)

WebForm1.BeginInvoke(dlg, New Object() {Name, dataSource, dataMember})



Thank you,



Yama
 
Hi,

I found a way to do this by creating a SOAP WebService.

Thanks,

Yama
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top