Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Field TIMESTAMP
Message
 
To
16/02/2000 12:55:25
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00332991
Message ID:
00333260
Views:
47
*-- Get Time Stamp from current Date and Time
Function GetTimeStamp
Local ddttm
ddttm = DateTime()
Return ((YEAR(ddttm)-1980) * 2 ^ 25) + ;
       (MONTH(ddttm) * 2 ^ 21) + ;
       (DAY(ddttm) * 2 ^ 16) + ;
       (HOUR(ddttm) * 2 ^ 11) + ;
       (MINUTE(ddttm) * 2 ^  5) + ;
       SEC(ddttm)
EndFunc
>I´d like to know how VFP form designer fills the field "TIMESTAMP" on a .SCX file. I need to know that because I am developing a code generator. Thanks.

Just an opinion... Not a fact.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform