Visual Studio 2019 使用 VB 在浏览器中打开 URL
Visual Studio 2019 Open URL In Browser Using VB
我正在尝试使用 LinkLabel 将我的程序的用户定向到我的 Discord 服务器(这样他们就可以报告错误等等),但每次我点击它时我都会收到一条错误消息 'The system cannot find the file specified.'
我使用的是 Process.Start("INVITE LINK")
,因为这是我在 Google 搜索问题时得到的绝大多数结果中找到的代码。但是,这似乎在 Visual Studio 2019 年不起作用,我得到的错误证明了这一点。要么,要么我忽略了一些东西(这不是第一次,因为我有一种不正确阅读东西的习惯)。
我确定我以前做过,但我一辈子都记不起它是怎么做到的;我在这里问,希望有人能把我推向正确的方向。提前致谢。
取自 answer in c#、
using System.Diagnostics;
Process myProcess = new Process();
myProcess.StartInfo.UseShellExecute = true;
myProcess.StartInfo.FileName = "https://discord.gg/(invite code goes here)";
myProcess.Start();
在vb
中没有太大区别
Imports System.Diagnostics
Dim myProcess = New Process()
myProcess.StartInfo.UseShellExecute = True
myProcess.StartInfo.FileName = "https://discord.gg/(invite code goes here)"
myProcess.Start()
我正在尝试使用 LinkLabel 将我的程序的用户定向到我的 Discord 服务器(这样他们就可以报告错误等等),但每次我点击它时我都会收到一条错误消息 'The system cannot find the file specified.'
我使用的是 Process.Start("INVITE LINK")
,因为这是我在 Google 搜索问题时得到的绝大多数结果中找到的代码。但是,这似乎在 Visual Studio 2019 年不起作用,我得到的错误证明了这一点。要么,要么我忽略了一些东西(这不是第一次,因为我有一种不正确阅读东西的习惯)。
我确定我以前做过,但我一辈子都记不起它是怎么做到的;我在这里问,希望有人能把我推向正确的方向。提前致谢。
取自 answer in c#、
using System.Diagnostics;
Process myProcess = new Process();
myProcess.StartInfo.UseShellExecute = true;
myProcess.StartInfo.FileName = "https://discord.gg/(invite code goes here)";
myProcess.Start();
在vb
中没有太大区别Imports System.Diagnostics
Dim myProcess = New Process()
myProcess.StartInfo.UseShellExecute = True
myProcess.StartInfo.FileName = "https://discord.gg/(invite code goes here)"
myProcess.Start()