Custom Query (3926 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (385 - 387 of 3926)

Ticket Resolution Summary Owner Reporter
#2588 Fixed Menu/Statusbar location problem Jon Melba23
Description

Creating a menu and a status bar before using GUISetState causes the status bar to fall off the bottom of the GUI. Creating or resizing the status bar after the GUI state is set places it at the bottom of the GUI as expected. Example code in this topic:

http://www.autoitscript.com/forum/topic/157426-guictrlcreatemenu-guictrlstatusbar-create-bug/

3.3.8.1 does not display this behaviour - the status bar is correctly located even if created before the GUISetState call.

M23

#2613 Fixed AutoIt crashes whenever an array value returned from a WMI query is null Jon anonymous
Description

Example:

_GetIPAddresses()

Func _GetIPAddresses($sComputer = @ComputerName)

Local $objWMI = ObjGet('winmgmts:
' & $sComputer & '\root\CIMV2') Local $objClass = $objWMI.InstancesOf('Win32_NetworkAdapterConfiguration')

For $objItem In $objClass

MsgBox(0,"",$objItem.IPAddress(0))

Next

EndFunc

Here are the problem details as returned by Windows... Problem signature: Problem Event Name: APPCRASH Application Name: autoit3.exe Application Version: 3.3.10.2 Application Timestamp: 52c196bd Fault Module Name: autoit3.exe Fault Module Version: 3.3.10.2 Fault Module Timestamp: 52c196bd Exception Code: c0000005 Exception Offset: 0004b79d OS Version: 6.3.9600.2.0.0.272.7 Locale ID: 1033 Additional Information 1: 5861 Additional Information 2: 5861822e1919d7c014bbb064c64908b2 Additional Information 3: 01d7 Additional Information 4: 01d7340064827245f2249cd1f1a7c264 Read our privacy statement online: http://go.microsoft.com/fwlink/?linkid=280262 If the online privacy statement is not available, please read our privacy statement offline: C:\Windows\system32\en-US\erofflps.txt Here is AutoIT's exit code: Exit code: -1073741819 Time: 57.541

Please see this thread. http://www.autoitscript.com/forum/topic/157625-crash-after-upgrading-to-33102/#entry1142433

#2623 Fixed RegDelete() returns 0 instead of 2 when unable to delete key Jon Factfinder
Description

After installing the latest AutoIt version (3.3.10.2) I noticed it. I'm not sure about the older versions.

I noticed it when I was not able to delete an AV leftover service that was still running.

I created a registry key, removed Full Access but left Read Access for all the groups:

$ret = RegDelete("HKEY_LOCAL_MACHINE\SOFTWARE\test"); subkey with only read access for evryone MsgBox(0, "delte aatest", $ret & "," & @error); $ret = 0 @error= 1

From the function description: Success: 1. Special: 0 if the key/value does not exist. Failure: 2 if error deleting key/value and sets the @error flag to non-zero.

It means the return value says the key doesn't exist. In short instead of 2 it returns 0.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.