Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (322 - 324 of 3922)

Ticket Resolution Summary Owner Reporter
#1163 Rejected WinGetClassList - optional parameter for parent class only rover
Description

I would like to suggest adding a flag parameter to WinGetClassList to return only the window/control class string without a linefeed.

this would be useful for UDF WM_NOTIFY message processing by class without need to DllCall GetClassName or add control handle to the message handler.

Thank You

#3532 No Bug Error on WinAPIShellEx Constants rossati@…
Description

Hello It seems that the constants

$SHCNE_RENAMEFOLDER = 0x00020000 and $SHCNE_UPDATEITEM = 0x00002000

are reversed.

here my try:

Event: 0x00020000 Path: D:\telemedicina\New folderxx Event: 0x00002000 Path: D:\telemedicina Event: 0x00002000 Path: D:\telemedicina\New Text Document.txt

The first when I changed the name of folder, the second I think signals this like update of folder, the third is after change the Document.txt

Best regards

John Rossati

#903 Duplicate _ExcelReadSheetToArray doesn't work with other MSoffice language than US rooversj@…
Description

When the OS language or MS Office language is other than US the function _ExcelReadSheetToArray might not work correctly. Because of the letter "C" in the functioncode mentioned below. For example "Column" in Dutch is "Kolom" so when I change the "C" into "K" the function magically will work on my pc (Dutch OS en Dutch MS Office) because "lR1C1" in the Dutch version of Excel is "lR1K1".

	; Extract integer last row and col
	Local $iLastRow = StringInStr($sLastCell, "R")
	Local $iLastColumn = StringInStr($sLastCell, "C")
	$iLastRow = Number(StringMid($sLastCell, $iLastRow + 1, $iLastColumn - $iLastRow - 1))
	$iLastColumn = Number(StringMid($sLastCell, $iLastColumn + 1))
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.