Aug 11, 2002 #1 stvhui Programmer Jul 17, 2002 13 ID Hello to you, How to setting Date to "DD-MMM-YY" eg. 31-AUG-02 Please advice Steven
Aug 12, 2002 #2 Mike Gagnon Programmer Apr 6, 2002 8,067 CA This can be set by doing a couple of things: SET CENTURY OFF SET DATE SHORT SET DATE MDY But you have to go in the control panel (Regional settings) and check the Short Date style, and adjust it to show DD-MMM-YY Upvote 0 Downvote
This can be set by doing a couple of things: SET CENTURY OFF SET DATE SHORT SET DATE MDY But you have to go in the control panel (Regional settings) and check the Short Date style, and adjust it to show DD-MMM-YY
Aug 12, 2002 #3 Mike Gagnon Programmer Apr 6, 2002 8,067 CA STVHUI Sorry in my above suggestion I meant: SET CENTURY OFF SET DATE SHORT SET DATE DMY Upvote 0 Downvote
Aug 12, 2002 #4 Mike Gagnon Programmer Apr 6, 2002 8,067 CA STVHUI One last thing, once you reset the date in the Regional Settings, it does require a re-boot to take effect. Upvote 0 Downvote
STVHUI One last thing, once you reset the date in the Regional Settings, it does require a re-boot to take effect.
Aug 12, 2002 #5 itflash Programmer Jul 18, 2001 535 GB try : str(day(date())) + " " + left(cmonth(date()), 3) + " " + str(year(date())) Upvote 0 Downvote