24-10-15, 08:56 PM
Modules come in vb only
Visual Basic provides several modules that enable you to simplify common tasks in your code, including manipulating strings, performing mathematical calculations, getting system information, performing file and directory operations, and so on. The following table lists the modules provided by Visual Basic.
Both classes and modules are reference types that encapsulate the items defined within, but they differ in how items are accessed from other procedures.
Differences Between Classes and Modules
The main difference between classes and modules is that classes can be instantiated as objects while standard modules cannot. Because there is only one copy of a standard module's data, when one part of your program changes a public variable in a standard module, any other part of the program gets the same value if it then reads that variable. In contrast, object data exists separately for each instantiated object. Another difference is that unlike standard modules, classes can implement interfaces
Class vs. Component vs. Control
Visit
https://msdn.microsoft.com/en-us/library/0b1dk63b.aspx
In end
Any item depend on your usage and your way to get easy mode for dev your apps
Goodluck
!
Visual Basic provides several modules that enable you to simplify common tasks in your code, including manipulating strings, performing mathematical calculations, getting system information, performing file and directory operations, and so on. The following table lists the modules provided by Visual Basic.
Both classes and modules are reference types that encapsulate the items defined within, but they differ in how items are accessed from other procedures.
Differences Between Classes and Modules
The main difference between classes and modules is that classes can be instantiated as objects while standard modules cannot. Because there is only one copy of a standard module's data, when one part of your program changes a public variable in a standard module, any other part of the program gets the same value if it then reads that variable. In contrast, object data exists separately for each instantiated object. Another difference is that unlike standard modules, classes can implement interfaces
Class vs. Component vs. Control
Visit
https://msdn.microsoft.com/en-us/library/0b1dk63b.aspx
In end
Any item depend on your usage and your way to get easy mode for dev your apps
Goodluck
!
سبحان الله والحمدلله ولا إله إلا الله والله أكبر
اللهم اغْفِرْ لِلمؤمنين والمؤمنات والمسلمين والمسلمات الأحياء منهم والأموات


