Answers for "Autoit - Get Year Month Day separately"

0

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)
----------------------------------------------------------
Posted by: Guest on January-25-2022

Code answers related to "Autoit - Get Year Month Day separately"

Browse Popular Code Answers by Language