Click LinkLabel to Open website in your Default Web Browser : LinkLabel « GUI « VB.Net

VB.Net
1. 2D
2. Application
3. Class
4. Data Structure
5. Database ADO.net
6. Development
7. Event
8. File Directory
9. Generics
10. GUI
11. Language Basics
12. Network Remote
13. Thread
14. Windows System
15. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VB.Net » GUI » LinkLabelScreenshots 
Click LinkLabel to Open website in your Default Web Browser
Click LinkLabel to Open website in your Default Web Browser

Imports System
Imports System.Windows.Forms


Public Class MainClass
    
    Shared Sub Main()
        Dim form1 As Form = New Form1

        Application.Run(form1)


    End Sub
End Class

Public Class Form1
    Inherits System.Windows.Forms.Form

#Region " Windows Form Designer generated code "

    Public Sub New()
        MyBase.New()

        'This call is required by the Windows Form Designer.
        InitializeComponent()

        'Add any initialization after the InitializeComponent() call

    End Sub

    'Form overrides dispose to clean up the component list.
    Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
        If disposing Then
            If Not (components Is NothingThen
                components.Dispose()
            End If
        End If
        MyBase.Dispose(disposing)
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    Friend WithEvents lnkBuy As System.Windows.Forms.LinkLabel
    Friend WithEvents lnkWebSite As System.Windows.Forms.LinkLabel
    <System.Diagnostics.DebuggerStepThrough()Private Sub InitializeComponent()
        Me.lnkBuy = New System.Windows.Forms.LinkLabel()
        Me.lnkWebSite = New System.Windows.Forms.LinkLabel()
        Me.SuspendLayout()
        '
        'lnkBuy
        '
        Me.lnkBuy.Font = New System.Drawing.Font("Tahoma"8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lnkBuy.LinkArea = New System.Windows.Forms.LinkArea(00)
        Me.lnkBuy.Location = New System.Drawing.Point(1660)
        Me.lnkBuy.Name = "lnkBuy"
        Me.lnkBuy.Size = New System.Drawing.Size(24448)
        Me.lnkBuy.TabIndex = 3
        Me.lnkBuy.Text = "www.java2s.com"
        '
        'lnkWebSite
        '
        Me.lnkWebSite.Font = New System.Drawing.Font("Tahoma"8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
        Me.lnkWebSite.LinkArea = New System.Windows.Forms.LinkArea(00)
        Me.lnkWebSite.Location = New System.Drawing.Point(1616)
        Me.lnkWebSite.Name = "lnkWebSite"
        Me.lnkWebSite.Size = New System.Drawing.Size(24836)
        Me.lnkWebSite.TabIndex = 2
        Me.lnkWebSite.Text = "The whole line is a LinkLabel"
        '
        'Form1
        '
        Me.AutoScaleBaseSize = New System.Drawing.Size(513)
        Me.ClientSize = New System.Drawing.Size(292150)
        Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.lnkBuy, Me.lnkWebSite})
        Me.Name = "Form1"
        Me.Text = "Link Examples"
        Me.ResumeLayout(False)

    End Sub

#End Region

    Private Sub lnkBuy_LinkClicked(ByVal sender As Object, _
      ByVal e As LinkLabelLinkClickedEventArgsHandles lnkBuy.LinkClicked, _
      lnkWebSite.LinkClicked

        e.Link.Visited = True
        System.Diagnostics.Process.Start(CType(e.Link.LinkData, String))
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgsHandles MyBase.Load
        lnkBuy.Links.Add(02"http://www.java2s.com")
        lnkBuy.Links.Add(610"http://www.java2s.com")
        lnkWebSite.Links.Add(010"http://www.java2s.com")
    End Sub
End Class

           
       
Related examples in the same category
1. Use LinkLabel and load the link in your system default browserUse LinkLabel and load the link in your system default browser
2. Set different URL for one LinkLabelSet different URL for one LinkLabel
3. Using LinkLabels to create hyperlinks: browse C:\ driveUsing LinkLabels to create hyperlinks: browse C:\ drive
4. Using LinkLabels to create hyperlinks: Open BrowserUsing LinkLabels to create hyperlinks: Open Browser
5. Using LinkLabels to create hyperlinks: Open NotepadUsing LinkLabels to create hyperlinks: Open Notepad
w_w___w___.__ja_va2s_.__com___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.