Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (205 - 207 of 3893)

Ticket Resolution Summary Owner Reporter
#3761 Completed _WinAPI_SetWindowPos second parameter description Melba23 moderncareca@…
Description

$HWND_TOPMOST has the same description as $HWND_NOTOPMOST.

#3760 Fixed Number() bug with oversized integer values Jon jchd18
Description

Number($s) erroneously converts values outside [MinInt64, MaxInt64] to MinInt64 or MaxInt64.

MinInt64 = -9223372036854775808 MaxInt64 = 9223372036854775807

Example:

Number("22222222222222222222222222222222")  ; returns 9223372036854775807

Workaround version returning a FP values in such case:

Func _Number($s)
	Local $a = StringRegExp($s, "^([-+]?)0*(\d+)$", 1)
	If Not @error Then
		Local $l = StringLen($a[1])
		; in case the int is oversized
		If $l > 19 Or ($a[0] <> "-" And $a[1] > "9223372036854775807") Or ($a[0] = "-" And $a[1] > "9223372036854775808") Then Return Number($s & ".0")
	EndIf
	Return Number($s)
EndFunc
#3758 Completed _WinAPI_BrowseForFolderDlg docs mistake Melba23 MrGeorge
Description

Description in the docs for $iFlags parameter in function _WinAPI_BrowseForFolderDlg sais:

Flags that specify the options for the dialog box. This parameter can a combination of the following values:

There is a missing "be" after "This parameter can".

This parameter can be a combination of the following values:

Note: See TracQuery for help on using queries.