我正在尝试打开“ WebBrowser1”中的另一种形式的链接。
我能够在使用外部浏览器(Opera,Chrome)时做到这一点
Private Sub Button1_Click(发送者为对象,e作为EventArgs)处理Button1.Click
Dim var As String
Dim URL As String = "https://www.youtube.com/playlist?list=PL4UtW0Dv_Zc-l3HycoIc0wfhUnBk2JZa6"
var = ComboBox1.Text
MsgBox(var + " selected")
If ComboBox1.Text = "Chest2" Then
'This is where I want to make it in 'WebBrowser1'
End If
End Sub