Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (256 - 258 of 3893)

Ticket Resolution Summary Owner Reporter
#958 Fixed _ArrayDisplay - bad centering of window after adjust its width Gary Zedna
Description

Inside this function there is code for adjusting width of window according to columns width but after this adjusting window is not centered on the screen.

original code:

	; ajust window width
	$iWidth = 0
	For $i = 0 To $iSubMax + 1
		$iWidth += GUICtrlSendMsg($hListView, $_ARRAYCONSTANT_LVM_GETCOLUMNWIDTH, $i, 0)
	Next
	If $iWidth < 250 Then $iWidth = 230
	WinMove($hGUI, "", Default, Default, $iWidth + 20)

corrected code:

	; ajust window width
	$iWidth = 0
	For $i = 0 To $iSubMax + 1
		$iWidth += GUICtrlSendMsg($hListView, $_ARRAYCONSTANT_LVM_GETCOLUMNWIDTH, $i, 0)
	Next
	If $iWidth < 250 Then $iWidth = 230
	$iWidth += 20
	WinMove($hGUI, "", (@DesktopWidth - $iWidth)/2, Default, $iWidth)

#961 Fixed RegDelete fails to to delete reg key containing sub keys Jon Starboy
Description

This issue only happens when using a 32bit exe on a 64bit OS. Trying to delete a key containing sub keys fails in the 64bit nod and the 32bit nod but only while using a 32bit exe. Using the same code on a 32bit OS works fine or the same code on a 64bit OS compiled as a 64bit exe.

I have only been able to test it on 2003 Server 64bit.

;This tests is for bug with deleting 32bit keys on a 64bit OS using a 32bit exe

; Write a single REG_SZ value and another subkey
RegWrite("HKLM\SOFTWARE\Test", "TestKey", "REG_SZ", "Hello this is a test")
RegWrite("HKLM\SOFTWARE\Test\test2", "TestKey", "REG_SZ", "Hello this is the second test")

MsgBox(4096, "", "Check for the new keys then click OK" & @CR & "then check to see if it was deleted.")

; Delete the previously created key
RegDelete("HKLM\SOFTWARE\Test")
;This tests is for bug with deleting 64bit keys on a 64bit OS using 32bit exe

; Write a single REG_SZ value and another subkey
RegWrite("HKLM64\SOFTWARE\Test", "TestKey", "REG_SZ", "Hello this is a test")
RegWrite("HKLM64\SOFTWARE\Test\test2", "TestKey", "REG_SZ", "Hello this is the second test")

MsgBox(4096, "", "Check for the new keys then click OK" & @CR & "then check to see if it was deleted.")

; Delete the previously created key and subkey
RegDelete("HKLM64\SOFTWARE\Test")
#963 Fixed Incorrect Sound.au3 Help file entries Jpm Melba23
Description

This thread (http://www.autoitscript.com/forum/index.php?showtopic=95159&st=0&gopid=683930&#entry683930) pointed out that the Help file entries for the Sound.au3 UDF have not been updated even though the UDF was altered last year. As I was the instigator of the changes, and I know RazerM does not frequent this forum too often, I would be happy to amend the Help file entries to match the new UDF.

Who wants what and in what format?

M23

Note: See TracQuery for help on using queries.