1. Computing
Glossary|Tips/Tricks|FREE App/VCL|Best'O'Net|Books|Link Back

Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
 

DecodeDate

unit
Sysutils
category
date/time routines

declaration
procedure DecodeDate(Date: TDateTime; var Year, Month, Day: Word);;

description
Separates Year, Month, and Day values from a TDateTime value.

If the given TDateTime value is less than or equal to zero, the year, month, and day return parameters are all set to zero.

example
var  Y, M, D: Word;

DecodeDate(Date, Y, M, D);

if Y = 2000 then
 ShowMessage('You''re in a "wrong" century!);

in real code

see also
DateOf EncodeDate DecodeTime


 Free Delphi code snippet inside every Delphi Newsletter!
Subscribe to the Newsletter
Name
Email

 Got some code to share? Got a question? Need some help?

©2013 About.com. All rights reserved.