Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (136 - 138 of 3866)

Ticket Resolution Summary Owner Reporter
#2809 No Bug inconsistent work of the For...To...Step...Next loop anonymous
Description

In the following example the loop doesn't work as is expected. First loop (For $i=0 To 1 Step 0.1) runs eleven times, as it should, but the second one (For $i=1 To 2 Step 0.1) runs only ten times. Doesn't seem quite right, does it. Such error also occurs when using some other non-integer values for the Step, and also when difference between X and Y in {For $i=X To Y Step <non-integer>} is bigger than 1(one).

$c=0
ConsoleWrite('from 0 to 1 step 0.1'&@cr)
for $i=0 to 1 step 0.1
	ConsoleWrite($i& ', ')
	$c+=1
next
ConsoleWrite(@cr&'counter = '&$c&@cr&@cr)

$c=0
ConsoleWrite('from 1 to 2 step 0.1'&@cr)
for $i=1 to 2 step 0.1
	ConsoleWrite($i& ', ')
	$c+=1
next
ConsoleWrite(@cr&'counter = '&$c&@cr&@cr)
#890 No Bug inconsistence with objects and execute JRSmile
Description

Hi if i use the execute function to do a method call like this: Execute($object.'&$method&'(somemorestuff)') it works, but when i use the execute like this: Execute($object.'&$method&' = "this is a test"') it doesn't work. example attached.

#4006 No Bug incomplete read missing key in IniReadSection itdev721@…
Description

incomplete read missing key in IniReadSection when the value length is too large or there is an error for some reason.

Note: See TracQuery for help on using queries.