VB.NET How to Use ContextMenuStrip Right Click

VB.NET for beginner - How to Configure ContextMenuStrip Check Margins and Image Margins in vb.net? this tutorials will show you how to create simple applications with add ContextMenuStrip into our project. for example we will create simple Context menu items for "Login, Open New link (website, facebook, youtube, G Plus, etc) and Exit menu". Just follow tihs tutorial step by step.

Read : 
VB.NET Login & Registration Form with SQL Server + Source Code
VB.NET Insert Update Delete with MySQL Database Metro UI Theme + Source Code
VB.Net Example : Aplikasi Backup & Restore MySQL Database vb.net


Create ContextMenuStrip Project

Just create a new project and or with eksisting our project and add new ContextMenuStrip to our form just like this :

How to Use ContextMenuStrip Right Click

Source Code Project ContextMenuStrip


    Private Sub FrmLogin_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ContextMenuStrip = ContextMenuStrip1 ' show the ContextMenuStrip 1
End Sub

Private Sub LinkLabel1_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked, LinkLabel2.LinkClicked
' show the registrations form
Process.Start("www.hc-kr.com")

End Sub

Private Sub SignUpToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles SignUpToolStripMenuItem.Click
FRMsignup.Show() ' show new form
End Sub

Private Sub WwwhckrcomToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles WwwhckrcomToolStripMenuItem.Click
Process.Start("www.hc-kr.com") ' open new link
End Sub

Private Sub FacebookToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles FacebookToolStripMenuItem.Click
Process.Start("https://www.facebook.com/hckrcom") ' open hc-kr facebook
End Sub

Private Sub YoutubeToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles YoutubeToolStripMenuItem.Click
Process.Start("https://www.youtube.com/c/HarisonMatondang") ' youtube link
End Sub

Private Sub GooglePlusToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles GooglePlusToolStripMenuItem.Click
Process.Start("https://plus.google.com/u/0/+HarisonMatondang") ' g plus link
End Sub

Private Sub ExitToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ExitToolStripMenuItem.Click
Me.Close() ' close form
End Sub

If you're still confused with the tutorial above, please see the following this video tutorial

Video How to Use ContextMenuStrip Right Click