Custom Query
Results (313 - 315 of 3893)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1100 | No Bug | ControlCommand not getting state of check box in .NET controls | anonymous | |
| Description |
The ClassnameNN looks like this - WindowsForms10.BUTTON.app225. I am unable to check the state - wether it is checked or not. Though I can check the check box. ANY way to get around this issue. |
|||
| #1103 | No Bug | Scientific convertion to integer adding +1. (x>=2^49) | anonymous | |
| Description |
; Scientific conversion to integer adding +1. (x>=2^49)
; from value 2^49 and up.
Local $i,$j,$k,$v
$v = 562949953421312 ; int(2^49)
For $i = $v-2 To $v+2
$j = $i * 1e0
$k = int($j)
If ($j=$k) Then
ConsoleWrite('> ')
Else
ConsoleWrite('- ')
EndIf
ConsoleWrite($i&', '&$j&', '&($j=$k)&', '&$k&'.'&@CRLF)
Next
;~ > 562949953421310, 562949953421310, True, 562949953421310.
;~ > 562949953421311, 562949953421311, True, 562949953421311.
;~ - 562949953421312, 562949953421312, False, 562949953421313.
;~ - 562949953421313, 562949953421313, False, 562949953421314.
;~ - 562949953421314, 562949953421314, False, 562949953421315.
|
|||
| #1104 | No Bug | Scientific number, addition failer. (x>2^53) | anonymous | |
| Description |
; Scientific number, addition failer. (x>2^53)
; after value 2^53 and up.
Local $i,$j,$v,$c=1
$v = 9007199254740992 ; int(2^53)
For $i = ($v-2)*1e0 to ($v+2)*1e0
If ($i<>$j) Then
ConsoleWrite('> ')
Else
ConsoleWrite('- ')
$c = 0
EndIf
ConsoleWrite($i&', '&int($i)&'.'&@CRLF)
If not $c Then ExitLoop
$j = $i
Next
;~ > 9.00719925474099e+015, 9007199254740991.
;~ > 9.00719925474099e+015, 9007199254740992.
;~ > 9.00719925474099e+015, 9007199254740993.
;~ - 9.00719925474099e+015, 9007199254740993.
|
|||
Note: See TracQuery
for help on using queries.
