Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (319 - 321 of 3904)

Ticket Resolution Summary Owner Reporter
#320 Fixed _WinNet_EnumResource Bug. + Fix. Gary arcker
Description

When try using the function _WinNet_EnumResource, error 487 is returned.

the problem is on those lines in the function, in WinNet.au3 :

$pCount = DllStructGetPtr(DllStructGetData($tData, "Count"))
	$pBufSize = DllStructGetPtr(DllStructGetData($tData, "BufSize"))

the good code is :

$pCount = DllStructGetPtr($tData, "Count")
$pBufSize = DllStructGetPtr($tData, "BufSize")

arcker.

#321 Fixed _GUICtrlStatusBar_GetText() --> truncation on Unicode Gary Zedna
Description

_GUIStatusBar.au3 --> _GUICtrlStatusBar_GetText()

siao has found this bug and suggested also fix for it which helped. I think this kind of bug could be also in another standard UDFs.

Here is original post: http://www.autoitscript.com/forum/index.php?s=&showtopic=71946&view=findpost&p=526879

#322 Fixed SciTE wrong highlighting when using nested #CS/#CE Jos Hubertus72
Description
#comments-start
	Beep()
	#comments-start
		Beep()
	#comments-end
	Beep()
#comments-end
MsgBox(0,"No Beep","No Beep")

This code work perfect and there is no beep at all. But... in SciTE editor, the last beep() is not shown as comment.

Nesting works fine, but SciTE's display has a bug.

Note: See TracQuery for help on using queries.