Fixed the "System.ComponentModel.Win32Exception: An error occurred in sending the command to the application" error in the about-box link code.

This commit is contained in:
Michael Möller 2010-05-01 15:55:19 +00:00
parent b4b40b7f8e
commit a9fdbb64b1
2 changed files with 5 additions and 3 deletions

View File

@ -56,7 +56,9 @@ namespace OpenHardwareMonitor.GUI {
private void linkLabel1_LinkClicked(object sender, private void linkLabel1_LinkClicked(object sender,
LinkLabelLinkClickedEventArgs e) { LinkLabelLinkClickedEventArgs e) {
Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString())); try {
Process.Start(new ProcessStartInfo(e.Link.LinkData.ToString()));
} catch { }
} }
} }

View File

@ -69,5 +69,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.33.0")] [assembly: AssemblyVersion("0.1.34.0")]
[assembly: AssemblyFileVersion("0.1.33.0")] [assembly: AssemblyFileVersion("0.1.34.0")]