Message I need to add a help button in my message box then find the answer here Clickable URL in a Winform Message Box? which is great! however, when I use this code inside a button then click the help button, it opens 2 tabs with the same link.
Private Sub btn1_Click(sender As Object, e As EventArgs) Handles btn1.Click
MessageBox.Show(
"test message",
"caption",
MessageBoxButtons.YesNo,
MessageBoxIcon.Information,
MessageBoxDefaultButton.Button1,
0, '0 is default otherwise use MessageBoxOptions Enum
"http://google.com",
"keyword")
End Sub
-Update: I just tried it with the new project Winforms .NET 5.0 and it's working fine, but I need this on my current project.