Function Reference


_NowDate

Returns the current Date in the Pc's format

#include <Date.au3>
_NowDate ( )

Return Value

Returns the current Date specified in your computer's regional settings.

Remarks

If your computer's regional settings is not accessible it returns the date in the "M/d/yyyy" format.

Related

_DateTimeFormat, _Now, _NowCalc, _NowCalcDate, _NowTime

Example

#include <Date.au3>
#include <MsgBoxConstants.au3>

MsgBox($MB_SYSTEMMODAL, '', "The Date is:" & _NowDate())