Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Change to better
Message
From
11/11/2004 10:40:04
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
 
 
To
11/11/2004 09:00:26
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00960324
Message ID:
00960447
Views:
10
>hi,
>
>thank you.
>
>? HOW :It is much easier to copy all the desired fields into a table, or cursor, and run your report on this table or cursor.
>myfield at mstr.table is ex..number,price,total

Several options:
* #1: my favorite
select * from MyTable;
  where (some condition);
  into cursor TempReport
report form...

* #2
select MyTable
copy to TempTable for (some condition)
select 0
use TempTable
report form...
use
erase TempTable.dbf

* #3
select MyTable
set filter to (some condition)
report form...
>
>? HOW i can know the report doesn't have any table in its DataEnvironment.
modify report MyReport
Now, in the menu, give the command "View | Data Environment". If you see a "blank sheet", everything is as it should be. If you see any tables, delete them and save the report.
Difference in opinions hath cost many millions of lives: for instance, whether flesh be bread, or bread be flesh; whether whistling be a vice or a virtue; whether it be better to kiss a post, or throw it into the fire... (from Gulliver's Travels)
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform