BUG: ? Displays Incorrect Number of Characters to Screen

Last reviewed: January 5, 1998
Article ID: Q178664
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 5.0a
  • Microsoft Visual FoxPro for Macintosh, version 3.0b

SYMPTOMS

Sending output to the desktop with a question mark (?) or @ SAYS may cause incorrect output to appear on the screen. If the variable that is being output is quite long, around 200 characters or greater, the output generated will not be the same as the length of the variable. The number of characters displayed should match the number of characters in the variable.

CAUSE

The Visual FoxPro screen font is set to a proportional font. Different proportional fonts produce different results.

RESOLUTION

Set the Visual FoxPro screen font to a mono-spaced font. Courier New and Foxfont are two fonts that should produce the correct output.

STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Steps to Reproduce Behavior

Run the following commands in a program or from the Visual FoxPro Command window:

   _SCREEN.FONTNAME = "Arial"
   _SCREEN.FONTSIZE = 10
   x = REPLICATE('0123456789',25) && Creates a string 250 characters long
   ? LEN(x) && Returns 250
   ? x  && If you count you will get 219

The DISPLAY MEMORY LIKE x command outputs the correct number of characters to the screen.

Keywords          : FxprgGeneral VFoxMac vfoxwin
Version           : MACINTOSH:3.0b;WINDOWS:3.0,3.0b,5.0,5.0a
Platform          : MACINTOSH WINDOWS
Issue type        : kbbug


================================================================================


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: January 5, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.