Register |

Author Code Resources

Find developer resources,code sample,articles,blogs,project sample for creating application in various technology.
Programming Languages
Tech News and Resources

Recent Articles,blogs and code snippets


How to set different URL or link on single LinkLabel control using vb.net

  In this example we will learn that how we can set different links on single Linklabel control in vb.net.

How to browse drive through Linklabel in vb.net

  The following example shows how to browse drive through Linklabel in vb.net.Example requires a LinkLabel control named LinkLabel1 on the windows form. Private Sub LinkLabel1_Linkclicked(Byval sender as System.Object, Byval e As _       System.Windows.Forms.Linklabellinkclickedeventargs)Handles LinkLabel1.Linkclicked           LinkLabel1.Linkvisited = True           System.Diagnostics.Process.Start("C:") End Sub

How to open web browser through LinkLabel control in vb.net

  The following example show how to open any web browser through LinkLabel control.

Code for open Notepad through Linklabel in vb.net

  The following example shows how to open notepad application through Linklabel control using vb.net language.

More inside AuthorCode