VB.net Module

In this tutorial,we cover how to create a module,store information inside a module and then access that information in your application. A module can be used to store functions,subs or even variables to sort out your code so that you can access things more easily. If you have a sophisticated application where you have to store a lot of functions,subs or variables then it would be useful to sort them into different categories using modules. A module is differen t to a class because all of the members of a module are shared and a module does not have a consutrctor,meaning you can not create an instance of a module.

Module Code

Module functions

    Public bla As Integer = 10
    Public bla2 As Integer = 20

    Public Function addnumbers(ByVal number1 As Integer,ByVal number2 As Integer)
        Return number1 + number2
    End Function

End Module

Code

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Button1.Click
        TextBox3.Text = addnumbers(bla,bla2)
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Button2.Click
        MessageBox.Show(addnumbers(TextBox1.Text,TextBox2.Text))
        MessageBox.Show(functions.addnumbers(TextBox1.Text,TextBox2.Text))
    End Sub

End Class

相关文章

Format[$] ( expr [ , fmt ] ) format 返回变体型 format$ 强制返回为文本 --------------------------...
VB6或者ASP 格式化时间为 MM/dd/yyyy 格式,竟然没有好的办法, Format 或者FormatDateTime 竟然结果和...
在项目中添加如下代码:新建窗口来显示异常信息。 Namespace My ‘全局错误处理,新的解决方案直接...
转了这一篇文章,原来一直想用C#做k3的插件开发,vb没有C#用的爽呀,这篇文章写与2011年,看来我以前没...
Sub 分列() ‘以空格为分隔符,连续空格只算1个。对所选中的单元格进行处理 Dim m As Range, t...
  窗体代码 1 Private Sub Text1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integ...