luger Posted February 7, 2016 Posted February 7, 2016 (edited) Hello, My English is not good. The following image. #include <Date.au3> ConsoleWrite(Hex(1454814044, 8) & @CR) $a=_DateDiff('s', "1970/01/01 00:00:00", _NowCalc()) ConsoleWrite($a & @CR) ConsoleWrite(Hex($a, 8) & @CR ) Why not do it? Where is the problem? :( Note: @AutoItVersion ;-->v3.3.14.2 Edited February 7, 2016 by luger
kylomas Posted February 7, 2016 Posted February 7, 2016 luger, Hex requires an int or binary type, like this... ConsoleWrite(Hex(int($a), 8) & @CR ) kylomas luger 1 Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
luger Posted February 7, 2016 Author Posted February 7, 2016 (edited) Thank You, kylomas But the integer was not it ? #include <Date.au3> $a=_DateDiff('s', "1970/01/01 00:00:00", _NowCalc()) ConsoleWrite(IsInt($a) & @CR) ConsoleWrite(StringIsInt($a) & @CR) Edited February 7, 2016 by luger
jchd Posted February 7, 2016 Posted February 7, 2016 Studying this modified example will shed light: #include <Date.au3> $a=_DateDiff('s', "1970/01/01 00:00:00", _NowCalc()) ConsoleWrite(VarGetType($a) & " = " & $a & @CR) ConsoleWrite(Hex($a, 8) & @CR ) ConsoleWrite(Hex(Int($a), 8) & @CR ) luger 1 Reveal hidden contents This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)
luger Posted February 7, 2016 Author Posted February 7, 2016 (edited) Thank you, jchd. I understood--> "$a = Double". Okey.. Thank you very much. Problem solved. I understand.. Edited February 7, 2016 by luger
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now