# HG changeset patch # User moel.mich # Date 1272729319 0 # Node ID b94ce6a3aaf4ab6b533b9b2457d41a9554043e36 # Parent 6d6683c2895bb095b427c7e073ac24e605daa422 Fixed the "System.ComponentModel.Win32Exception: An error occurred in sending the command to the application" error in the about-box link code. diff -r 6d6683c2895b -r b94ce6a3aaf4 GUI/AboutBox.cs --- a/GUI/AboutBox.cs Sat May 01 12:12:37 2010 +0000 +++ b/GUI/AboutBox.cs Sat May 01 15:55:19 2010 +0000 @@ -56,7 +56,9 @@ private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString())); + try { + Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString())); + } catch { } } } diff -r 6d6683c2895b -r b94ce6a3aaf4 Properties/AssemblyInfo.cs --- a/Properties/AssemblyInfo.cs Sat May 01 12:12:37 2010 +0000 +++ b/Properties/AssemblyInfo.cs Sat May 01 15:55:19 2010 +0000 @@ -69,5 +69,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.1.33.0")] -[assembly: AssemblyFileVersion("0.1.33.0")] +[assembly: AssemblyVersion("0.1.34.0")] +[assembly: AssemblyFileVersion("0.1.34.0")]