PatrickIT 0 Report post Posted December 13, 2006 sorry for my english but i'm italian. Existing a time functions to get currnt time? i've used TimerInit but it return millesecond time. i would like to have a time as DD/MM/YY:HH.MM.SS Thanks Share this post Link to post Share on other sites
Markus 2 Report post Posted December 13, 2006 @HOUR & "." & @MIN & "." & @SEC Search for @HOUR... macros in the helpfile. "It's easier to disintegrate an atom than a prejudice." (A.Einstein)---------------------------------------------------------------------------My C++ - tools:Tidy tool-->indents your c++ sourceCleanscript --> cleans autoit-code before compiling (co-author: peethebee)My tools:GUIBuilder-->build your window and get the source; german versionMy Games:OnlineGameCenter-->Online Chess and Connect4 with a rtf-chatSnake-->including a level editor to build your own levelsTetris-->the well known game, big funOther things:Tower of Hanoi-->perfect riddler with graphic output Share this post Link to post Share on other sites
Helge 1 Report post Posted December 13, 2006 Look at the time and date macros in the helpfile... $date = @MDAY & "/" & @MON & "/" & StringRight(@YEAR, 2) & ":" & @HOUR & ":" & @MIN & ":" & @SEC MsgBox(64, "", $date) Share this post Link to post Share on other sites
PatrickIT 0 Report post Posted December 13, 2006 Look at the time and date macros in the helpfile... $date = @MDAY & "/" & @MON & "/" & StringRight(@YEAR, 2) & ":" & @HOUR & ":" & @MIN & ":" & @SEC MsgBox(64, "", $date) Thanks Share this post Link to post Share on other sites