vba code to send form data

P

Paul1066

I am trying to find a way to send the form data from a word document to a web
address from vba code. I can collect up the form data but I cannot find a
simple way of posting that data to a web URL. Does anyone have any
suggestions?

Thank you,
Paul
 
K

Karl E. Peterson

Paul1066 said:
I am trying to find a way to send the form data from a word document to a web
address from vba code. I can collect up the form data but I cannot find a
simple way of posting that data to a web URL. Does anyone have any
suggestions?

Parameters directly following the URL? It's certainly the time-tested and most
widely used method. Ex:

http://www.google.com/search?hl=en&...=navclient-ff&rlz=1B2GGGL_en___US205&ie=UTF-8

That includes the following variables: hl, q, sourceid, rlz, ie
 
Top