Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I use other source?
Message
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00552457
Message ID:
00552465
Views:
16
>Can I use a query for my data source for a VFP report instead of a table, like in Access( ewww! ), or is there a query/filter function in the table designer?
>
>Thanks.
Yes, you can use a cursor generated by query in VFP report. Something like
SELECT * ;
  FROM mytable ;
  WHERE <some conditions> ;
  INTO CURSOR mycursor
Just don't use alias in the fields references in report. There's also Query Designer in VFP. You can call it from VFP menu or from command window
Modify Query myquery
If query with name 'myquery' doesn't exist it'll be created.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform