Skip to content

Commit

Permalink
fix openurl
Browse files Browse the repository at this point in the history
  • Loading branch information
Sonic853 committed Jan 3, 2025
1 parent 84beb8b commit bff5913
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Excel2JsonEX.GUI/MainForm.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using ICSharpCode.TextEditor;
using ICSharpCode.TextEditor.Document;
using System.ComponentModel;
using System.Diagnostics;
using System.Text;

namespace Excel2JsonEX.GUI
Expand Down Expand Up @@ -162,7 +163,7 @@ private void panelExcelDropBox_DragDrop(object sender, DragEventArgs e)
/// </summary>
private void btnHelp_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://neil3d.github.io/coding/excel2json.html");
Process.Start(new ProcessStartInfo("https://neil3d.github.io/coding/excel2json.html") { UseShellExecute = true });
}

/// <summary>
Expand Down

0 comments on commit bff5913

Please sign in to comment.