加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

VB.net Module

发布时间:2020-12-17 08:08:01 所属栏目:百科 来源:网络整理
导读: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 a

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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读