Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

working with dates in Clipper 1

Status
Not open for further replies.

rebeccaj

Programmer
Jul 2, 2001
3
US
Basic question: how do I store an empty date to a memory variable in Clipper?

If I append a record to a table and then store the empty date field to the memory variable, I get the results I want. How can I do it without using a table?

In FoxPro I would say:
dDate = {}

If anybody can let me know the appropriate syntax in Clipper, I would be eternally grateful!
 
try this ...
tmpdate := CTOD('')

or

tmpDate := CTOD(' / / ')
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top