Microsoft KB Archive/101587: Difference between revisions

From BetaArchive Wiki
(importing KB archive)
 
m (Text replacement - """ to """)
 
Line 13: Line 13:
== SYMPTOMS ==
== SYMPTOMS ==


A popup in FoxPro version 2.5 for Windows has a limit of 399 bars. If 400 or more bars are defined, the error message "Insufficient Memory" will appear.
A popup in FoxPro version 2.5 for Windows has a limit of 399 bars. If 400 or more bars are defined, the error message "Insufficient Memory" will appear.


== STATUS ==
== STATUS ==
Line 25: Line 25:
<pre>  DEFINE POPUP test from 1,1
<pre>  DEFINE POPUP test from 1,1
   FOR j=1 to 400
   FOR j=1 to 400
     DEFINE BAR j of test PROMPT &quot;test&quot;+str(j)
     DEFINE BAR j of test PROMPT "test"+str(j)
   ENDFOR
   ENDFOR
   ACTIVATE POPUP test
   ACTIVATE POPUP test

Latest revision as of 09:22, 20 July 2020

FIX: Popup Has Limit of 399 Bars

ID: Q101587

2.50 WINDOWS kbenv kbprg kbfixlist kbbuglist

The information in this article applies to:

- Microsoft FoxPro for Windows, verion 2.5

SYMPTOMS

A popup in FoxPro version 2.5 for Windows has a limit of 399 bars. If 400 or more bars are defined, the error message "Insufficient Memory" will appear.

STATUS

Microsoft has confirmed this to be a problem in FoxPro version 2.5 for Windows. This problem was corrected in FoxPro version 2.5a for Windows.

MORE INFORMATION

The following code sample demonstrates this problem:

   DEFINE POPUP test from 1,1
   FOR j=1 to 400
     DEFINE BAR j of test PROMPT "test"+str(j)
   ENDFOR
   ACTIVATE POPUP test

Additional reference words: FoxWin buglist2.50 fixlist2.50a 2.50 KBCategory: kbenv kbprg kbfixlist kbbuglist KBSubcategory: FxenvMemory Solution Type : kbfix


Last Reviewed: September 22, 1997
© 1999 Microsoft Corporation. All rights reserved. Terms of Use.