Hi,
When using multiple forms in a project is it more efficient use of memory/resources to define an instance of an object once and then re-use it in other forms or does it not make any difference to the size or resources the program uses.
For example is it better to code
Reader.New1
in it's own form
or
Form1.Reader.New1
Thanks
Joe
When using multiple forms in a project is it more efficient use of memory/resources to define an instance of an object once and then re-use it in other forms or does it not make any difference to the size or resources the program uses.
For example is it better to code
Reader.New1
in it's own form
or
Form1.Reader.New1
Thanks
Joe