Module

  • Thread starter Thread starter WStoreyII
  • Start date Start date
W

WStoreyII

A module is used to store a hole bunch of procedures and class's right ? if
not what is the best method for doing this as my forms are gettting clutter.
if so how is used ie how do you pass procedures from a module.

the reason i ask is i dont know how to reference other forms class ect. and
i will need to do so for my project.

sorry to ask what most likely sounds like a dumb question.


WStoreyII
 
Hi WStoreyII. You might consider the following:

Your class needs a reference to an instance of a control--a class that
references a method/field in a form for example.

A form can pass a reference of its *instance* (a reference to itself) to
another class when it is constructed by the form...

Derek LaZard
 
Derek,

You mean that if i create the class under the code for the form class that i
can use it ?
if so is it good to have that much code on one form?

WStoreyII
 
Back
Top