How retrive data from web service

Y

yovys

How I can receive data of a Web Services that has an input parameter, I need
populate a drop down list, where I can send input parameter?
--
 
S

sakieboy

I don't know if you've figured this out yet, but, when you first create a new
form there are 2 sections. "Drag query fields here" and "Drag data fields
here". Your parameter should go into the "Drag query fields here". Let me
know if you have any other questions.
 
C

Clive Glover

If you are writing the web service it goes in the function declaration:
<WebMethod(Description:="Read schedule from some.mdb")> Public Function
ReadSchedule(ByVal CID As Integer) As DataSet

You then use the parameter in your query that returns the dataset, or
whatever.

If you are not writng the web service, I don't know what you mean I am
afraid.

Rgds
 

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

Top