Syntax Parameters Example Programs Example
w3mvDInput sends a form to mvDesigner and optionally waits for the reply.
call w3mvDInput (err , Timeout , Options )
|
err |
In |
Completion status, w3_OK = successful, other = error. |
|
Timeout |
In |
The number of seconds to wait for a reply. Values are the same as for w3Input. 0 = forever, otherwise up to 86400 seconds. This parameter is used only if w3_P option is specified. The timeout period is not impacted by the mvDesigner server closing the connection to FlashCONNECT. |
|
Options |
In |
w3_P = use a persistent connection, otherwise use a non-persistent connection. If w3_P is not used, the application must immediately cleanup and return to www-irun to send the message. |
Example Programs
err = ""
call w3mvDInput(err, 0, w3_P) ;* send form and return immediately
call w3mvDInput(err, 60, "") ;* send form and wait 1 minute