Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling a webreference

Status
Not open for further replies.

stevebanks

Programmer
Mar 30, 2004
93
Hi,

I am very new to this, i need to create a data transfer application asap...
I am connecting to a web reference called DataService and need to call the GetClientTables method, yet every time i try to it appends CompletedEventArgs to the method... e.g.


Code:
Dim clientTables As ClientTable() =  dataService.GetClientTablesCompletedEventArgs()


instead of

Code:
Dim clientTables As ClientTable() = dataService.GetClientTables()

For Each clientTable As ClientTable In clientTables
'Do something
Next


i hope this is enough information.

could someone please please explain what i am doing wrong!? it's driving me mad and i'm running low on time!!

thanks so much
 
Do you see it in intellisense? If not, then the method is not exposed as public or at a level that you can see.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top