sys_doy

These variables contain the day of the year (1..356) the PC's current time and date.

Range:

1 ... 365

Type:

var, read-only

Example:

FONT* digit_font = "digit.pcx";
PANEL* uhr =
{
  digits (  0, 0, 2, digit_font, 1,sys_hours); 
  digits ( 20, 0, 2, digit_font, 1,sys_minutes); 
  digits ( 40, 0, 2, digit_font, 1,sys_seconds);	
  digits ( 0,20, 2, digit_font, 1,sys_day); 
  digits ( 20,20, 2, digit_font, 1,sys_month);
  digits ( 40,20, 2, digit_font, 1,sys_year);
  digits (  0,40, 2, digit_font, 1,sys_doy);
  digits ( 20,40, 2, digit_font, 1,sys_dow);
  flags =  SHOW;
}

See also:

sys_seconds, sys_minutes, sys_hours, sys_day, sys_month, sys_year, sys_dow ► latest version online