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.
instead of
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
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