DDE and OPC

Discuss RoboTask here
Post Reply
sjechura
Posts: 1
Joined: Thu Sep 11, 2008 7:38 am

DDE and OPC

Post by sjechura »

Is the any way I can pass data from ROBOTASK to another app with OPC and\or DDE ?
 
Oleg
Site Admin
Posts: 3014
Joined: Thu Jan 01, 1970 1:00 am
Contact:

DDE and OPC

Post 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"
Post Reply