Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Print Preview Problems
Message
 
To
02/03/2005 08:14:11
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00551076
Message ID:
00991922
Views:
17
>tried both nofilter and flush and neither fixed the problem. i guess i am stuck with my "browse timeout" command

What about GO TOP or LOCATE just before REPORT FORM ...
SELECT apt.apt, apt.mkt_rent as mkt_rent, IIF(ISNULL(last_rent),'-',MAX(last_rent)) as last_Rent,
       IIF(ISNULL(dt_vacate),'-',DTOC(MAX(dt_vacate))) as dt_vacate,;
       apt.type as type, IIF(ISNULL(dt_vacate) AND ISNULL(last_rent),'Not found in archive file',SPACE(26)) as reason ;
FROM archive;
RIGHT OUTER JOIN apt ON archive.apt=apt.apt ;
WHERE apt.apt NOT in (select apt FROM cross WHERE NOT EMPTY(last)) ;
GROUP BY APT.APT ;
INTO CURSOR c_vacancylist NOFILTER

FLUSH

GO TOP

REPORT FORM ...
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform