We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302f65d commit cedaf76Copy full SHA for cedaf76
Source/ExcelDna.IntelliSense/ToolTipForm.cs
@@ -267,7 +267,12 @@ void LaunchLink(string address)
267
{
268
if (address.StartsWith("http", StringComparison.OrdinalIgnoreCase))
269
270
- Process.Start(address);
+ var psi = new ProcessStartInfo
271
+ {
272
+ FileName = address,
273
+ UseShellExecute = true // Explicitly set to since under .NET Core 3.0+, UseShellExecute defaults to false
274
+ };
275
+ Process.Start(psi);
276
}
277
else
278
0 commit comments