mirror of
https://github.com/openhardwaremonitor/openhardwaremonitor
synced 2025-08-30 22:05:08 +00:00
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:
@@ -56,7 +56,9 @@ namespace OpenHardwareMonitor.GUI {
|
||||
|
||||
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 { }
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -69,5 +69,5 @@ using System.Runtime.InteropServices;
|
||||
// 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")]
|
||||
|
Reference in New Issue
Block a user