Hello,
I tried to launch the “RobotWareArc GUI” from my custom application , but it doesnA’t work.According to the SDK Reference Guide it should be possible , maybe i do something wrong.
Has someone done this before ?
This is my code :
private void btnRobotWareArc_Click(object sender, EventArgs e)
{
try
{
if (iTpsSite.LaunchView(“TpsViewArc.dll”, “ABB.Robotics.Processes.Arc.ArcViewDesktop”, null, true, out _cookieD) != true)
{
GTPUMessageBox.Show(this, null, “Could not start User application”);
return;
}
}
catch (Exception ex)
{
GTPUMessageBox.Show(this, null, ex.ToString());
}
}