# Why the function Start() int PC SDK 5.60 does not work?

**URL:** https://tech-community.robotics.abb.com/t/why-the-function-start-int-pc-sdk-5-60-does-not-work/6122
**Category:** Developer Tools
**Created:** [May 6, 2014, 2:54pm UTC](https://tech-community.robotics.abb.com/t/why-the-function-start-int-pc-sdk-5-60-does-not-work/6122 "2014-05-06T14:54:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![andyong](https://avatars.discourse-cdn.com/v4/letter/a/9de0a6/32.png) [@andyong](https://tech-community.robotics.abb.com/u/andyong)
#### Post date: [May 6, 2014, 2:54pm UTC](https://tech-community.robotics.abb.com/t/why-the-function-start-int-pc-sdk-5-60-does-not-work/6122/1 "2014-05-06T14:54:09Z")

</div>

hi,everyone!  
this is my code:

NetworkScanner ns = new NetworkScanner();  
ns.Scan();  
ControllerInfo ci = ns.GetControllers();  
Controller controller = ControllerFactory.CreateFrom(ci[0]);  
controller.Logon(UserInfo.DefaultUser);  
Console.WriteLine(controller.SystemName);

Task ts = controller.Rapid.GetTasks();  
using (Mastership m = Mastership.Request(controller.Rapid))  
{  
bool bb = controller.AuthenticationSystem.CheckDemandGrant(Grant.ExecuteRapid);  
ts[0].LoadProgramFromFile(controller.FileSystem.RemoteDirectory + “/THIS/THIS.pgf”,RapidLoadMode.Replace);  
ts[0].Start();  
Console.ReadKey();  
}

these code works well if i reference them from the PC SDK 5.15. The virtual robot in RobotStudio will run the “THIS.pgf” when i run these code. But, when i reference them from PC SDK 5.60, the virtual controller will load “THIS.pgf”, but virtual robot don’t move. the value of “bb” is true during my test.  
 ![]()  
the pictures is output when i test the code with PC SDK 5.60.  
Can someone help me?  
Thank you!

 ![QQ图片20140506224632.jpg](https://europe1.discourse-cdn.com/flex005/uploads/robotics1/original/2X/9/9904762100369a5b141fa50fe2078321bf6fd42c.jpeg)  
 ![QQ截图20140506224755.png](https://europe1.discourse-cdn.com/flex005/uploads/robotics1/original/2X/6/6a7b42a532c36977a3c65a12bdbc4226ffa4d0d4.png)  
 ![QQ截图20140506224919.png](https://europe1.discourse-cdn.com/flex005/uploads/robotics1/original/2X/9/935eb35ddda4df624682965a443840414d4628d8.png)

---

<div class="post-metadata">

### Author: ![DanS](https://avatars.discourse-cdn.com/v4/letter/d/7993a0/32.png) [@DanS](https://tech-community.robotics.abb.com/u/DanS)
#### Post date: [September 29, 2014, 7:44pm UTC](https://tech-community.robotics.abb.com/t/why-the-function-start-int-pc-sdk-5-60-does-not-work/6122/2 "2014-09-29T19:44:29Z")

</div>

I am having this same issue and is described in another post.
