Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Gets

Status
Not open for further replies.

dardapu

Programmer
Sep 10, 2002
67
0
0
I am migrate an application of FPW26 in Visual 6.0, in which I execute the PRG directly. But in an instruction like
@ 8.692,60.333 GET m.listafac;
PICTURE" @ ^ Lista0;Lista1;Lista2;Lista3;Lista4;Lista5";
SIZE 1.538,10.000;
DEFAULT Lista0;
FONT MS Sans Serif", 8;
STYLE B;
valid listafac ()

encounter the problem that when giving him Enter on this object, it passes to the following object WITHOUT executing their valid. The valid has its process and a Return 1 to force the step to the following object given to that after the selection of the option the focus was in the one without passing to the next one.
That control can apply him to force to that one has to use the selection?.
Thank you
 
DEFAULT initializes m.listafac, or assigns a default value to Lista0 when the GET is drawn, if m.listafac has not already been initialized.
But a couple things come to mind here, is there by chance a different version of the 'listafac()' function layin around somewhere that the app may be grabbing instead of the one you think it is?
Also, do you have SET CONFIRM ON?


-Dave S.-
[cheers]
Even more Fox stuff at:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top