FIX: GET Field Default Sizes on the Desktop Are Too Small

Last reviewed: October 29, 1997
Article ID: Q135614
3.00 WINDOWS kbprg kbfixlist kbbuglist kbcode

The information in this article applies to:

  • Microsoft Visual FoxPro for Windows, version 3.0

SYMPTOMS

When issuing an @...GET with a default value to the Visual FoxPro Desktop, the displayed GET field is too small for the displayed value.

WORKAROUND

  • Add a SIZE cause to @...GET command to increase the size of the displayed GET field. See Example Two in the "More Information" section.

    -or-

  • Ossue the @...GET in a user-defined window. See Example Three in the "More Information" section.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem was corrected in Visual FoxPro 3.0b for Windows.

MORE INFORMATION

Steps to Reproduce and Work Around Problem

Example One:

From the Command window, issue this command:

   @2,2 GET MyField1 DEFAULT "Too Small"

The GET field will not display the entire default value.

Example Two:

Re-issue the @...GET command as follows:

   @2,2 GET MyField2 DEFAULT "Too Small" SIZE 1,15

The entire default GET field will be displayed.

Example Three:

Define and activate a window and then issue the @...GET.

   DEFINE WINDOW MyWindow AT 2,2 SIZE 30,30
   ACTIVATE WINDOW MyWindow
   @2,2 GET MyField3 DEFAULT "Is this Too Small"

The entire default GET field will be displayed.


Additional reference words: 3.00 VFoxWin fixlist3.00b buglist3.00
KBCategory: kbprg kbfixlist kbbuglist kbcode
KBSubcategory: FxprgGeneral
Keywords : FxprgGeneral kbbuglist kbcode kbfixlist kbprg
Version : 3.00
Platform : WINDOWS
Solution Type : kbfix


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