Arrays

  • Thread starter Thread starter rhill
  • Start date Start date
R

rhill

Can you pass a two dimentional array into a a Web Service
as a parameter? If so, what would be the syntax on the
receiving procedure?

Thaks,

Robert
 
Hi Robert,

A XML dataset is more than a 2 dimension array.

Does this brings you on the route?

Cor
 
Can you pass a two dimentional array into a a Web Service

I don't know about web services, but you can pass a two dimensional array
to a VB function by declaring like this:

Public Sub ArrayPasser(a As Integer(,))
'Process array here
End Sub

HTH

Chris
 
Back
Top