Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Unwanted browse window
Message
From
20/12/2001 08:25:13
 
 
To
20/12/2001 08:06:57
John Marrone
Bloodstock Research Inc.
Lexington, Kentucky, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00596680
Message ID:
00596695
Views:
20
Hi John
>I have a statment that is : [ select rscedesc from rac ]

You have not specified a destination for the SELECT, that is why you are getting a browse window (VFP Default behavior!).

Either use:

select rscedesc from rac INTO CURSOR cur_results

or, if you want the result set to be persistent:

select rscedesc from rac INTO TABLE

or, directly into an Array

select rscedesc from rac INTO ARRAY laFiles
----
Regards
Andy Kramek
Previous
Reply
Map
View

Click here to load this message in the networking platform