User Tools

Site Tools


date_pictures_1.htm
Navigation:  »No topics above this level«====== Date Pictures ====== Return to chapter overview

@Dn [s] [direction [range] ] [B]

blk2blue.jpg

@D All date pictures begin with @D.
n Determines the date picture format. Date picture formats range from 1 through 18. A leading zero (0) indicates a zero-filled day or month.
s A separation character between the month, day, and year components. If omitted, the slash ( / ) appears.
. (period) Produces periods
` (grave accent) Produces commas
- (hyphen) Produces hyphens
_ (underscore) Produces spaces
direction A right or left angle bracket (> or <;) that specifies the “Intellidate” direction (> indicates future, <; indicates past) for the range parameter. Valid only on ENTRY date pictures with two-digit years.
range An integer constant in the range of zero (0) to ninety-nine (99) that specifies the “Intellidate” century for the direction parameter. Valid only on ENTRY date pictures with two-digit years. If omitted, the default value is 80.
B Specifies that the format displays as blank when the value is zero.

Dates may be stored in numeric variables (usually LONG), a DATE field (for Btrieve compatibility), or in a STRING declared with a date picture. A date stored in a numeric variable is called a “Clarion Standard Date.” The stored value is the number of days since December 28, 1800. The date picture token converts the value into one of the date formats.

The century for dates in any picture with a two-digit year is resolved using “Intellidate” logic. Date pictures that do not specify direction and range parameters assume the date falls in the range of the next 19 or previous 80 years. The direction and range parameters allow you to change this default. The direction parameter specifies whether the range specifies the future or past value. The opposite direction then receives the opposite value (100-range) so that any two-digit year results in the correct century.

For example, the picture @D1>60 specifies using the appropriate century for each year 60 years in the future and 39 years in the past. If the current year is 1996, when the user enters “5/01/40,” the date is in the year 2040, and when the user enters “5/01/60,” the date is in the year 1960.

For those date pictures which contain month names, the actual names are customizable in an Environment file (.ENV). See the Internationalization section for more information.

Example:

Picture Format               Result

@D1      mm/dd/yy             10/31/59

@D1>40   mm/dd/yy             10/31/59

@D01     mm/dd/yy             01/01/95

@D2      mm/dd/yyyy           10/31/1959

@D3      mmm dd,yyyy          OCT 31,1959

@D4      mmmmmmmmm dd, yyyy   October 31, 1959

@D5      dd/mm/yy             31/10/59

@D6      dd/mm/yyyy           31/10/1959

@D7      dd mmm yy            31 OCT 59

@D8      dd mmm yyyy          31 OCT 1959

@D9      yy/mm/dd             59/10/31

@D10     yyyy/mm/dd           1959/10/31

@D11     yymmdd               591031

@D12     yyyymmdd             19591031

@D13     mm/yy                10/59

@D14     mm/yyyy              10/1959

@D15     yy/mm                59/10

@D16     yyyy/mm              1959/10

@D17                          Windows Control Panel setting for Short Date

@D18                          Windows Control Panel setting for Long Date

 Alternate separators    

@D1.     mm.dd.yy             Period separator

@D2-     mm-dd-yyyy           Dash separator

@D5_     dd mm yy             Underscore produces space separator

@D6`     dd,mm,yyyy           Grave accent produces comma separator

date_pictures_1.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1