
The code below is right from the WebServices pdf but it does not compile. "parameters.add(parm) " shows the error in the subject line.
Dim results As New LookupServicesSvc.ReturnData
Dim parms As New LookupServicesSvc.LookupParameters
Dim parm As New LookupServicesSvc.LookupParameter
parm.Name = "@page"
parm.SqlType = SqlDbType.Int
parm.Value = "0"
parms.Parameters.Add(parm)
(in the same project I am using FindCustomers from the customerservice without any problem)
What am I missing - TIA,
Ayrin
*This post is locked for comments
I have the same question (0)