﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1889	_ArrayDisplay optionaly display columns in hex.	436602556274@…	Gary	"Feature  reuest for function: _ArrayDisplay(Const ByRef $avArray ....
 should recieve an additional optional parameter  '''[,$sHexDisplay]''' ...
Parameter  $HexDisplay in the form of  a string of  ""0"" and  ""1"". 
Like this 
$sHexDisplay=""01001"" ::
 means  columns 2+5 should displayed in  hex,  all other normal.
 Columns  higher than the length of the string defaults to normal display. 

3 Lines of Code (one of them is only a comment line)
Modified header:
 {{{
  Func _ArrayDisplay(Const ByRef $avArray, $sTitle = ""Array: ListView Display"", _ 
$iItemLimit = -1,  $iTranspose = 0, $sSeparator = """", $sReplace = ""|"", _
 $sHeader = """", '''$sHexDisplay = 0''')
 }}}
immediate before(/after)  comment""	; Set header up"" [[BR]]
{{{
; build a string for each column ""1"" for hex- or  ""0"" or normal- display
Local $vHex = $sHexDisplay&_stringrepeat(0,$iSubMax-stringlen($sHexDisplay))
}}}
 [[BR]]and after behind the comment:"" 			; Add to text array"" [[BR]]
{{{
If stringmid($vHex,$j+1,1)  <> 0 Then $vTmp = _StringToHex($vTmp)
}}}
 
This function seems to be mainly a testing tool, so i think, it for other users a helpful  feature too. 
"	Feature Request	closed		Standard UDFs		None	Rejected		
