Difference between Class Module and Standard Module?

Showing Answers 1 - 2 of 2 Answers

srivathsan

  • Oct 3rd, 2005
 

standard module:

1)place for variable declarations,procedures etc.and we can access these procedures in wherever in the project.

2)Available only for the existing modules where they are used.

class module:

1)Unlike standard module,members of class like object's properties,events can be accessed only whenever an instance of class is created.

2)We can make use of it whenever an object reference of the particular class is created for number of applications

  Was this answer useful?  Yes

lalita.p

  • May 27th, 2007
 

Standard Module: Properties, methods and variable declare in this module can be accessed throughout the application.
Class Module: Properties,Methods and variables declare in the class module can be accessed only after creating the object of the class. after creating the object you can access these properties and method from any applications 

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions