Sunday 22 July 2012

subs in vb.net

In this tutorial, we cover the Sub or Sub Procedure in Visual Basic .NET. Creating a sub is a way of storing lines of code and then executing the lines of code inside of the sub when it is called. This tutorial we will show you how to store code for a message box in a sub and then call it when clicking a button.

Copy and paste below Code:

Public Class Form1

    Sub givemessage()
        MessageBox.Show("I am cool for using subs")
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Call givemessage()
    End Sub

End Class

No comments:

Post a Comment