what is differece b/w Module and class Modules in vb6?
thanks
Answer Posted / jerald
class module
It is a user defined datatype.
It have datamembers(methods and variables).
It can be accesed by creating the instance called
object if the class is not static. If the class is static
then it can be acessed using classname.datamember when
datamember is public.
Protected datamember can be accesed only by the first
inherited class.
Private datamember can be accesed only inside the main
class.
| Is This Answer Correct ? | 12 Yes | 25 No |
Post New Answer View All Answers
Is it possible to Manipulate data through flexgrid? Explain.
What do you know about chaining views.
How do I make the mouse cursor invisible/visible?
What is the current version of Visual Basic for Windows?
How to get freefile location in memory?
How would you Create a Query Builder and Explain its uses
How would you add elements in TreevieW Control.
Why can't I use an index with my VB accessed database?
what are the Types of LockEdits in RDO?
___ VB constant make the menu item in centre.
Explain about control properties?
How do I mimic a toggle button?
What are 3 main differences between flexgrid control and dbgrid control?
Maximum Control Names length?
It possible to call OLEDB's Features directly in VB without using any control?