-
I hope someone can help - I have a large project - loads of forms using data controls and now whenever I go to enter a data source on any field for any forms I get an out of memory error - illegal operation and shutdown. Has anyone experienced this or knows what the solution might be? Help please!!
-
There's a physical limit to the number of objects you can have in your project. Try creating an array of labels (which usually don't get referenced much), to start. Then do text boxes and whatever else you have large quantities of.
Interestingly, an array of labels counts as *one* towards the object limit, no matter how many are in the array.
-
Thanks - I'l remember to use arrays - If I have a lot of forms etc. Should I be creating a project group? I'ts all part of a large application - it runs OK but I only have this memory problem during development. Any advice on how I should be structuring it?