Custom Query (3922 matches)
Results (337 - 339 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #2171 | Fixed | Inconsistent delay for TCPTimeout option | ||
| Description |
A timeout of 1000ms and higher causes a sleep delay. Delay time depends on TCPTimeout setting. Examples: Opt('TCPTimeout', 1000) = 1 second Opt('TCPTimeout', 2000) = 2 seconds Opt('TCPTimeout', 5000) = 5 seconds Thanks goes to AdmiralAlkex showing timer differences. TCPStartup()
;
Local $iTimer, $Socket, $Server = TCPListen('127.0.0.1', 80)
If $Server = -1 Then Exit
;
Opt('TCPTimeout', 999); <-- set this higher to reproduce the problem
;
Local $gui = GUICreate('TCPTimeout Test', 400, 250, -1, -1)
GUISetState(@SW_SHOW)
;
While 1
Switch GUIGetMsg()
Case -3
TCPShutdown()
GUIDelete($gui)
Exit
EndSwitch
;
$iTimer = TimerInit()
$Socket = TCPAccept($Server)
MsgBox(0, '', TimerDiff($iTimer))
;
TCPCloseSocket($Socket)
WEnd
Link: http://www.autoitscript.com/forum/topic/137646-tcptimeout-bug/ |
|||
| #2679 | Rejected | Undocumented behaviour of arrays | ||
| Description |
reffering to a part of array that is being declared $avArray[2]=["foo",$avArray[0]] |
|||
| #2993 | Fixed | _Excel_RangeFind returns only last occurrence of string found Rather than ALL | ||
| Description |
It appears that the routine returns only the last occurrence of string rather than all occurrences Modified as follows and it appear to work Func _Excel_RangeFind($oWorkbook, $sSearch, $vRange = Default, $iLookIn = Default, $iLookAt = Default, $bMatchcase = Default)
EndFunc ;==>_Excel_RangeFind |
|||
