Link to home
Start Free TrialLog in
Avatar of Xman
Xman

asked on

Beginner

What's a good rule of thumb for how much code you put into a form and what you should seperate and put into a module?
ASKER CERTIFIED SOLUTION
Avatar of Amir101298
Amir101298

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tkuppinen
tkuppinen

I hesitate to give you a hard number on the amount of code that should go into a form.  Rather you should be looking at your coding techniques.  Are you coding as effeciently as possible? The more you code the more effecient you will become.  

A good example would be repetitiveness.  If you start repeating lines of code in various places, you should probably be looking at creating sub procedures or functions as the situation dictates.