|
-
Jul 11th, 2004, 10:01 PM
#1
Thread Starter
Lively Member
simple link question
i need someone to click on a link label thing and it opens up default browser and goes to a website... help?
-
Jul 11th, 2004, 11:14 PM
#2
Sleep mode
Like this :
VB Code:
Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked
Process.Start(Me.LinkLabel1.Text)
End Sub
-
Jul 11th, 2004, 11:38 PM
#3
And it should "Imports System.Diagnostics", right?
-
Jul 12th, 2004, 12:05 AM
#4
Sleep mode
No need . As System.Diagnostics is imported by default . You can see default namespaces like this :
Right click ProjectName (in the solution explorer) ---->Properties---->Imports (item on the left side) .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|