File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
UnderAutomation.UniversalRobots.Showcase.Forms Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,9 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
1717
1818---
1919
20- <p align =" center " >
21- <a href =" https://github.com/underautomation/UniversalRobots.NET/stargazers " ><b >⭐ Star if you like it !</b ></a >
22- </p >
23- <p align =" center " >
24- <a href =" https://github.com/underautomation/UniversalRobots.NET/watchers " ><b >👁️ Watch to be notified of latest updates !</b ></a >
25- </p >
20+ [ ⭐ Star if you like it !] ( https://github.com/underautomation/UniversalRobots.NET/stargazers )
21+
22+ [ 👁️ Watch to be notified of latest updates !] ( https://github.com/underautomation/UniversalRobots.NET/watchers )
2623
2724---
2825
@@ -35,7 +32,7 @@ The **Universal Robots SDK** enables seamless integration with Universal Robots
3532✔️ ** Multi-Platform** – Works on Windows, Linux, and macOS
3633✔️ ** Commercial License** – Deploy with no royalties
3734
38- 📹 ** Watch Introduction Video : **
35+ 📹 ** Watch Introduction Video**
3936
4037https://user-images.githubusercontent.com/47540360/143318635-6d6aaaf4-5642-457a-8ff1-4322f2defe82.mp4
4138
Original file line number Diff line number Diff line change 11using System ;
22using System . Collections . Generic ;
3+ using System . Diagnostics ;
34using System . Drawing ;
45using System . Linq ;
56using System . Windows . Forms ;
@@ -139,7 +140,16 @@ internal void SelectNode(TreeNode node)
139140 // Open browser to documentation page
140141 private void lblLink_LinkClicked ( object sender , LinkLabelLinkClickedEventArgs e )
141142 {
142- System . Diagnostics . Process . Start ( "https://underautomation.com/universal-robots/documentation?f" ) ;
143+ try
144+ {
145+ var ps = new ProcessStartInfo ( "https://underautomation.com/universal-robots" )
146+ {
147+ UseShellExecute = true ,
148+ Verb = "open"
149+ } ;
150+ Process . Start ( ps ) ;
151+ }
152+ catch { }
143153 }
144154 #endregion
145155
You can’t perform that action at this time.
0 commit comments