Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Sort date()
Message
From
02/06/2013 09:29:47
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
 
 
To
02/06/2013 03:04:47
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01575417
Message ID:
01575430
Views:
60
This message has been marked as a message which has helped to the initial question of the thread.
>how would I display all records before a specific date.
>I have a field called kdate which displays when a record was created
>I need to call all records before April 2013.
>
>thanks
>k

It really depends where you want to show it. Tore's reply is appropriate for an editing form. For a report, I would SELECT all data into a cursor, something like this:
local ldDate
ldDate = ThisForm.LblDate.Value && I am assuming the user will type the limiting date into a form
SELECT * FROM MyTable WHERE kDate < ldDate ORDER BY kDate INTO CURSOR Temp
REPORT FORM MyReport
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