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
How can you Add API functions to your Application?
What is meant by Establish Connection in RDO? 74.1s it possible to Access BackEnd procedures? Explain.
What is the use of Imagelist Controls ?
How would you convert a form into document?
How do I call a DLL?
How would you create your application in DHTML?
Data Control missing from toolbox when I use VB under NT3.5. Why?
What is constructors and distructors.
Types of Resultsets.
Is the Variant type slower than using other variable types?
How many ways you can access file using VB?
How can you get selected file from file system Control?
Difference between ActiveX Control and Standard Control.
what are the Types of LockEdits in RDO?
What is snapshot in vb?