Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Field TIMESTAMP
Message
 
À
16/02/2000 12:55:25
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Titre:
Divers
Thread ID:
00332991
Message ID:
00333260
Vues:
48
*-- 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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform