Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (289 - 291 of 3931)

Ticket Resolution Summary Owner Reporter
#3711 Fixed _WinAPI_EnumWindows - Error in Helpfile example Jpm KaFu
Description

_WinAPI_EnumWindows

_ArrayDisplay() used with wrong number of args, one of the four "defaults" must be deleted.

#3710 Fixed Server 2019 @OSVersion not correct Jon anonymous
Description

Hi,

I tried to use @OSVersion var with Server 2019, but it reports "WIN_2016" and not "WIN_2019".

Same problem with AutoIt 3.3.14.5 and beta 3.3.15.1

Thank you ;)

#3709 No Bug IniRenameSection deletes Old section instead of New section anonymous
Description

Example:

$sIni = _
	'[Main]' & @CRLF & _
	'Key1 = 1' & @CRLF & _
	'Key2 = 2' & @CRLF & _
	'Key3 = 3' & @CRLF & _
	@CRLF & _
	'[Test]' & @CRLF & _
	'Key4 = 1' & @CRLF & _
	'Key5 = 2' & @CRLF & _
	'Key6 = 3' & @CRLF
	@CRLF & _
	'[Other]' & @CRLF & _
	'Key7 = 1' & @CRLF & _
	'Key8 = 2' & @CRLF & _
	'Key9 = 3' & @CRLF

$hFile = FileOpen('test.ini', 2)
FileWrite($hFile, $sIni)
FileClose($hFile)

IniRenameSection('test.ini', 'Other', 'Main', 1)

MsgBox(64, @ScriptName, FileRead('test.ini'), 0, Default)

The docs says:

flag ...
    $FC_OVERWRITE(1) = Overwrite "new section". This will erase any existing keys in "new section".

But it's erasing keys in old section, actualy it's just destroying Old section.

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