adi2003 Posted December 11, 2003 Posted December 11, 2003 I have a small windows application with four forms and a module. To prevent redundancy I declared the form variables ( eg public form1 as new form1()) in module1. when I reference this in other forms , I am using module1.form1...... what is the best way to do this? should I instead declare the form variables in each form separately? or is it advisable to be in module1? Any input will be highly appreciated. TIA Quote
Moderators Robby Posted December 11, 2003 Moderators Posted December 11, 2003 It's advisable to never use Modules, create classes to churn out instances of the objects or declare them at the form level. Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.