You want to use an HTTP socket to 'POST' data to the form's action
URL.  From the language reference:

Dim form as Dictionary
Dim socket1 as New HTTPSocket

// create and populate the form object
form = New Dictionary
form.value("firstname") = "Bob"
form.value("lastname") = "Brown"

// setup the socket to POST the form
socket1.setFormData form
socket1.post "http://www.myformlocation.com/form.php";

On 5/25/06, Duane Hennessy <[EMAIL PROTECTED]> wrote:
How would I simulate the Submit functionality of a web page using the
HTTP socket? I want to submit a web form that has hidden fields but do
not want to open a web browser to do it.

I'm using RB5.5 for windows.

Any help appreciated muchly,

Thanks

--
Duane Hennessy
Senior Software Engineer and Systems Architect.
Bandicoot Software
Tropical Queensland, Australia
(ABN: 33 682 969 957)

Want Increased Productivity?
http://www.bandicootsoftware.com.au



_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>


_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to