Execute

The Execute method will execute the configured oWeb object.  vData is optional and is equivalent to the XML data in a SOAP request.

Group:  Web Object

Syntax:  bValue = oWeb.Execute([vData])

bValue        (Boolean) is True or False depending on the success of the submission to the web server.

vData         (Variant) Optional – an object that could contain the individual properties.

Example:

Dim oWeb As Web

If oWeb.Execute Then

  RFPrompt("txtReply").Text = oWeb.Reply

End If