[WD20]
I would like to use some code presented in an VisualBasic example :
_ Set objRequest = objCharacter.Play("Announce")
_ Do While objRequest.Status > 0
_ _ Wscript.Sleep 100
_ Loop
I know how to make a call to a proc without the return value (example
taken from WD examples - ActiveX, MS Agent)
WINDEV:
AGENT>>Characters(“Agent”)>>Play('Announce')
Because I need some more control I would like to use the logic from the
visal basic example, which uses the result of the procedure call - I
need access to objRequest.Status -
??? = AGENT>>Characters(“Agent”)>>Play('Announce')
How to get the result of the activeX call ??
IS THIS POSSIBLE IN WINDEW ?
HOW can I get the return value in the same way in WinDev?