Autoit - Get Year Month Day separately
Year: @YEAR
Month: @MON
Day: @MDAY
Example code:
----------------------------------------------------------
#include <Date.au3>
$cYear = @YEAR
$cMonth = @MON
$cDay = @MDAY
MsgBox(0,"Success","Format DD/MM/YYYY: " & $cDay & "/" & $cMonth & "/" & $cYear)
MsgBox(0,"Success","Format YYYY.MM.DD: " & $cYear & "." & $cMonth & "." & $cDay)
----------------------------------------------------------