Discussion:
Very Simple VB .NET question from a NEWBIE!!!
(too old to reply)
Ted Papas
2004-01-15 00:19:50 UTC
Permalink
I have a quick question since I don't have the help file for VB.net and I
bet its no biggie for you guys!
I m trying to make a HELP -> ABOUT Message Box and I want the URL of the
company to be active and clickable, how do I do it!?!? This is my Sub

This is the Help -> About MsgBox :
Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem3.Click

' Help/About stuff goes here

MsgBox("Blah Blah Blah vsn. 1.91" + Chr(13) + "Copyright © 2003 by Blah Blah
Corp." + Chr(13) + "All Rights Reserved" + Chr(13) + Chr(13) + "URL:
http://www.blahblah.com - E-Mail: ***@blahblah.com" + Chr1(13) + "Tel:
211-1234567 - Fax: 211-7654321" + Chr(13) + Chr(13) + "Expires On:
31-03-2004")

End Sub

That displays the url but in black and not active...

Please help!

Regards

Ted
n***@bounceall.net
2004-01-15 12:06:36 UTC
Permalink
Post by Ted Papas
I have a quick question since I don't have the help file for VB.net and I
bet its no biggie for you guys!
I m trying to make a HELP -> ABOUT Message Box and I want the URL of the
company to be active and clickable, how do I do it!?!? This is my Sub
Private Sub MenuItem3_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MenuItem3.Click
' Help/About stuff goes here
MsgBox("Blah Blah Blah vsn. 1.91" + Chr(13) + "Copyright © 2003 by Blah Blah
31-03-2004")
End Sub
That displays the url but in black and not active...
Please help!
Regards
Ted
Well the first mistake a newbie makes is posting the question in
multiple newsgroups. DO NOT post in multiple groups. The question is
about VB so post in VB group. Better yet use google to search groups
for an answer before posting.

LB

Loading...