| PRB: Visual FoxPro Gives @...GET a Default CaptionLast reviewed: October 20, 1995Article ID: Q138395 | 
| The information in this article applies to: 
 
 SYMPTOMSWhen using the @...GET command to create a check box, option button, or command button, Visual FoxPro gives the controls a default prompt. The following list shows the default prompts Visual FoxPro assigns: 
 check box 'check1' command button 'command1' option button 'option1' RESOLUTIONHere are three possible resolutions to this issue: 
 STATUSThis behavior is by design. 
 MORE INFORMATION
 Steps to Reproduce BehaviorRun the following code: 
    DEFINE WINDOW window1 FROM 1,10 TO 40,40 FLOAT CLOSE
   ACTIVATE WINDOW window1
   @ 5,5 GET command1 ;
        PICTURE "@*HN" ;
        SIZE 1,10 ;
        DEFAULT 1
   @ 8,5 GET option1 ;
        PICTURE "@*RVN" ;
        SIZE 1, 10;
        DEFAULT 1
   @ 11,5 GET check1 ;
        PICTURE "@*C" ;
        SIZE 1, 10;
        DEFAULT 1
   READ CYCLE
   RELEASE WINDOW window1
 | 
| Additional reference words: 3.00 VFoxWin 
 © 1998 Microsoft Corporation. All rights reserved. Terms of Use. |