Vincent Posted July 23, 2013 Posted July 23, 2013 Hi, i try to save the date into a variable. .@time_new = gettimestr("%Y-%m-%d",21); But the variable save's only the year 2013 as date. The problem is the "-" between Y-M-D. How can i save the hole date as var with the "-". Quote
Brian Posted July 23, 2013 Posted July 23, 2013 You could store it in a string (.@time_new$) instead of an integer variable (.@time_new) 1 Quote
Emistry Posted July 27, 2013 Posted July 27, 2013 .@time_new = atoi( gettimestr("%Y%m%d",21) ); you can do like this .... Quote
Question
Vincent
Hi,
i try to save the date into a variable.
But the variable save's only the year 2013 as date. The problem is the "-" between Y-M-D. How can i save the hole date as var with the "-".
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.