Page 1 of 1

DDE and OPC

Posted: Thu Sep 11, 2008 7:44 am
by sjechura
Is the any way I can pass data from ROBOTASK to another app with OPC and\or DDE ?
 

DDE and OPC

Posted: Thu Sep 11, 2008 11:36 pm
by Oleg
RoboTask have no directly method to pass something via DDE. But I think that you can do this in basic script.

Also you can control RoboTask from within another application by using RoboTask.App object. Like this:

Dim obj As object
    Set obj = CreateObject("RoboTask.app")
    ....
    etc.

In such code you can pass the data to RoboTask and get it from RoboTask

RoboTaskApp interface is described in help file.
See the topic "Actions | Basic | RoboTaskApp object"