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

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
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.java2java.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.java2java.com")
        lnkBuy.Links.Add(610"http://www.java2java.com")
        lnkWebSite.Links.Add(010"http://www.java2java.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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.