Hi ,
I was wondering if it would be possible to trigger a Robotask task through MSAccess VBA?
Thanks
MSAccess
Re: MSAccess
Yes you can call some functions of RoboTask from VBA
create object and use functions of RoboTask.App object
example of the script:
set obj = createobject("RoboTask.app")
msgbox("RoboTask version " + obj.version)
Read description of RoboTasApp object here: http://robotask.com/help/index.php?robo ... object.htm
create object and use functions of RoboTask.App object
example of the script:
set obj = createobject("RoboTask.app")
msgbox("RoboTask version " + obj.version)
Read description of RoboTasApp object here: http://robotask.com/help/index.php?robo ... object.htm
Oleg Yershov