VB.net Module

前端之家收集整理的这篇文章主要介绍了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

  1. Module functions
  2.  
  3. Public bla As Integer = 10
  4. Public bla2 As Integer = 20
  5.  
  6. Public Function addnumbers(ByVal number1 As Integer,ByVal number2 As Integer)
  7. Return number1 + number2
  8. End Function
  9.  
  10. End Module

Code

  1. Public Class Form1
  2.  
  3. Private Sub Button1_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Button1.Click
  4. TextBox3.Text = addnumbers(bla,bla2)
  5. End Sub
  6.  
  7. Private Sub Button2_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Button2.Click
  8. MessageBox.Show(addnumbers(TextBox1.Text,TextBox2.Text))
  9. MessageBox.Show(functions.addnumbers(TextBox1.Text,TextBox2.Text))
  10. End Sub
  11.  
  12. End Class

猜你在找的VB相关文章