Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Date and Time Variables different from one another in ty
Message
 
To
12/08/1999 14:05:50
Thomas Ianuzzi
Information Security Consultants, Inc.
Florida, United States
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00253129
Message ID:
00253131
Views:
21
>As part of output which is redirected to a file, I have run into the following situation. The code
>
>? "message" + time()
>
>works fine and prints to the screen
>
>but the code
>
>? "message" + date()
>
>causes a type mismatch
>
>anyone know why?

Hi Thomas,

DATE() returns a date datatype and you're trying to display it as a string when you ? "message " + date(). You can use:

? "message " + DTOC(DATE())

or

? " message " + TTOC(DATE()) && or DATETIME() as the parameter.
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform