PRB: Compile Out of Memory If too Many Public Members in Class

Last reviewed: October 30, 1995
Article ID: Q129700
The information in this article applies to:
  • Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, for Windows, version 4.0

SYMPTOMS

A project containing a class module with a large number (approximately 2000) of public class module variables will run successfully in the IDE but will cause an "Out of memory" error when you attempt to compile the project to make an executable file.

CAUSE

There is a limit to the number of public members you can put in a class module. The out of memory error is caused by exceeding the type library's (object library) capacity limit for definitions. When making an executable file, Visual Basic creates a type library and creates a typeinfo (an object description) for all the basic classes. The public members of the class are moved to the typeinfo in the type library. There is a limit (approximately 1100 members) to the number of definitions that you can have in a module.

RESOLUTION

Limit the number of public members in a class.

STATUS

This behavior is by design.


Additional reference words: 4.00 vb4win vb4all
KBCategory: kbprg kbprb
KBSubcategory: APrgOther


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 30, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.