Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (310 - 312 of 3893)

Ticket Resolution Summary Owner Reporter
#1089 No Bug #AutoIt3Wrapper_Run_Tidy=y, tidy also activated at run-script instant. Jos anonymous
Description

when the line '#AutoIt3Wrapper_Run_Tidy=y' is added to a script. Tidy is also run, when you just run[F5] the script from scite4autoit.

#1098 No Bug Case logical bug raphaelpereira.itpro@…
Description

("abc" = 0) IS TRUE IN: Select

Case "abc" = 0

MsgBox(0, "test1", "test1")

Case "xyz" = "xyz"

MsgBox(0, "test2", "test2")

Case Else

MsgBox(0, "test3", "test3")

EndSelect

#1099 No Bug The GUICtrlSetPos() function redraws each draw when moving a graphic anonymous
Description

The GUICtrlSetPos() function redraws each drawn line,etc. when moving a graphic, rather than just moving the final resulting graphic, this causes the function to take increasingly long time to execute for graphics which needs updating.

example code to simulate the problem:

; Script to simulate a bug in Autoit.
#include <GUIConstantsEx.au3>

AdlibEnable("GUIUpdate",20)

GUICreate("THIS IS A TEST",400,400)
GUICtrlCreateGraphic(10,10,380,380)
GUICtrlSetBkColor(-1,0xffffff)
GUICtrlSetColor(-1,0)
Global $box=GUICtrlCreateGraphic(20,20,20,20)
GUISetState(@SW_SHOW)
Sleep(3000)



While 1
	If GUIGetMsg()=$GUI_EVENT_CLOSE Then ExitLoop
WEnd

GUIDelete()

Func GUIUpdate()
	AdlibDisable()
	GUICtrlSetGraphic($box,$GUI_GR_PENSIZE,2)
	GUICtrlSetGraphic($box, $GUI_GR_COLOR,0,0xc0c0ff)
	GUICtrlSetGraphic($box,$GUI_GR_RECT,1,1,18,18)
	GUICtrlSetGraphic($box,$GUI_GR_PENSIZE,2)
	GUICtrlSetGraphic($box,$GUI_GR_COLOR,0xff0000,0x00ffff)
	GUICtrlSetGraphic($box,$GUI_GR_RECT,1,1,18,18)
	Local $time=TimerInit()
	GUICtrlSetPos($box,Random(10,360,1),Random(10,360,1))
	$time=TimerDiff($time)
	ToolTip("TimeTaken: "&$time)
	AdlibEnable("GUIUpdate",20)
EndFunc

Note: See TracQuery for help on using queries.