Dear All,
I have a line of code like this to display today's date month year :
dt=SelectedValue(DateTime());
str_Day=DateTimeFormat("%d",dt);
str_Month=DateTimeFormat("%B",dt);
str_Year=DateTimeFormat("%Y",dt);
GfxTextOut(str_Day+" "+str_Month+" "+str_Year,1530,272);
I want to display the date, month, and year from 3 days ago, but I get an error.
GfxTextOut((str_Day+" "+str_Month+" "+str_Year,-3),1530,272);
Please correct this code
Any help would be highly appreciated.
Thanks for help.