Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (304 - 306 of 3893)

Ticket Resolution Summary Owner Reporter
#1064 No Bug DriveGetSerial ( "path" ) Goguy
Description

i am cloned two computer with symnatec ghost two computer, two windows, two hards drives

after clone the serial is identical under two machines

#1065 No Bug _DateDiff showing 0 days dash007
Description

Hi,

Below code shows that the difference in days between the 2 dates is 0.If I change the date to 2009/06/30, then it works fine and shows 11 days. It looks like its to do with '31'.

#include <Date.au3>

$iDateCalc = _DateDiff( 'D',"2009/06/31",_NowCalcDate())
MsgBox( 4096, "", $iDateCalc )
#1067 No Bug Unsigned structure "uint64" work as signed "int64" amel27
Description
$t1 = DllStructCreate("uint;uint")
$t2 = DllStructCreate("uint64", DllStructGetPtr($t1))

DllStructSetData($t1, 1, -1)
DllStructSetData($t1, 2, -1)

ConsoleWrite(DllStructGetData($t1, 1) &@CRLF)
ConsoleWrite(DllStructGetData($t1, 2) &@CRLF)
ConsoleWrite(DllStructGetData($t2, 1) &@CRLF)
Note: See TracQuery for help on using queries.