FIX: C0000005 Fatal Error With Big Array PropertyID: Q221742
|
In Visual FoxPro 5.x and 6.0, dimensioning a two-dimension array greater than its maximum allows value, which is 32500, causes the following or some other memory related error message:
C0000005 Fatal Error
Microsoft has confirmed this to be a bug in the Microsoft products listed
at the beginning of this article.
This bug was corrected in Visual Studio 6.0 Service Pack 3.
For more information about Visual Studio service packs, please see the following articles in the Microsoft Knowledge Base:
Q194022 INFO: Visual Studio 6.0 Service Packs, What, Where, Why
Q194295 HOWTO: Tell That Visual Studio 6.0 Service Packs Are Installed
x1 = CREATEOBJECT( "cBigArray" )
x1.aBig[1,1] = 1
x1.aBig[1000,1] = 1
x1.aBig[10000,1] = 1
x1.aBig[30000,1] = 1
DEFINE CLASS cBigArray AS Custom
DIMENSION aBig[33000,2]
ENDDEFINE
Too Many Variables
Additional query words:
Keywords : kbservicepack kbVFp500abug kbVFp600 kbVFp600bug kbXBase kbVS600sp2fix kbVS600sp3fix kbGrpFox kbVS600SP1fix
Version : WINDOWS:5.0,5.0a,6.0
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: May 19, 1999