Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (157 - 159 of 3866)

Ticket Resolution Summary Owner Reporter
#3784 Rejected StringSplit2D anonymous
Description

Func StringSplit2D($sMatches = "Hola2-5-50-50-100-100|Hola-6-200-200-100-100", $sDelim_Item = "-", $sDelim_Row = "|")

Local $iValDim_1, $iValDim_2 = 0, $iColCount Local $aSplit_1 = StringSplit($sMatches, $sDelim_Row, $STR_NOCOUNT + $STR_ENTIRESPLIT) $iValDim_1 = UBound($aSplit_1, $UBOUND_ROWS) Local $aTmp[$iValDim_1][0], $aSplit_2 For $i = 0 To $iValDim_1 - 1

$aSplit_2 = StringSplit($aSplit_1[$i], $sDelim_Item, $STR_NOCOUNT + $STR_ENTIRESPLIT) $iColCount = UBound($aSplit_2) If $iColCount > $iValDim_2 Then

$iValDim_2 = $iColCount ReDim $aTmp[$iValDim_1][$iValDim_2]

EndIf For $j = 0 To $iColCount - 1

$aTmp[$i][$j] = $aSplit_2[$j]

Next

Next Return $aTmp

EndFunc

#3783 Rejected _WinAPI_SetThreadAffinityMask, _WinAPI_SetThreadGroupAffinity, _WinAPI_ GetProcessGroupAffinity anonymous
Description

With the release of 64 and higher thread processors, I'd like to see AutoIt have Grouping aware options in the WinAPI section.

http://download.microsoft.com/download/a/d/f/adf1347d-08dc-41a4-9084-623b1194d4b2/morethan64proc.docx

#3782 No Bug Au3 stripper fail. anonymous
Description

When it comes to projects of immeasurable magnitudes, with many includes, AU3 Check will fail throwing an error code that I don't remember right now.

Note: See TracQuery for help on using queries.