# Launch RobotWareArc View from custom Application

**URL:** https://tech-community.robotics.abb.com/t/launch-robotwarearc-view-from-custom-application/3886
**Category:** Developer Tools
**Created:** [October 29, 2010, 11:46am UTC](https://tech-community.robotics.abb.com/t/launch-robotwarearc-view-from-custom-application/3886 "2010-10-29T11:46:56Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Picard1de](https://avatars.discourse-cdn.com/v4/letter/p/3d9bf3/32.png) [@Picard1de](https://tech-community.robotics.abb.com/u/Picard1de)
#### Post date: [October 29, 2010, 11:46am UTC](https://tech-community.robotics.abb.com/t/launch-robotwarearc-view-from-custom-application/3886/1 "2010-10-29T11:46:56Z")

</div>

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());

}

}

---

<div class="post-metadata">

### Author: ![Lennart\_H](https://avatars.discourse-cdn.com/v4/letter/l/ac91a4/32.png) [@Lennart\_H](https://tech-community.robotics.abb.com/u/Lennart_H)
#### Post date: [October 29, 2010, 2:42pm UTC](https://tech-community.robotics.abb.com/t/launch-robotwarearc-view-from-custom-application/3886/2 "2010-10-29T14:42:57Z")

</div>

Hi  
I’m a bit confused…Can you please tell me:  
-In which manual did you find this?  
-Which is the version of the manual?  
-In which section/page did you find this.  
Thanks!

---

<div class="post-metadata">

### Author: ![Picard1de](https://avatars.discourse-cdn.com/v4/letter/p/3d9bf3/32.png) [@Picard1de](https://tech-community.robotics.abb.com/u/Picard1de)
#### Post date: [October 29, 2010, 3:01pm UTC](https://tech-community.robotics.abb.com/t/launch-robotwarearc-view-from-custom-application/3886/3 "2010-10-29T15:01:58Z")

</div>

Hi,

This can be found in the “FlexPendant SDK Reference guide” located at C:Program FilesABB Industrial ITRobotics ITSDKFlexPendant SDK 5.13

Search for =\> ITpsViewLaunchServices.LaunchView method

It now works , i was missing some code in the ITpsViewSetup.Install method.
