Modify

#930 closed Bug (No Bug)

Arraydisplay does not display everything

Reported by: wimhek Owned by: Gary
Milestone: Component: Standard UDFs
Version: 3.3.0.0 Severity: None
Keywords: arraydisplay Cc:

Description

When a row in an arry contains a '|' dislaying of the line stops.

#include <Array.au3>
dim $aaa [2]

$aaa [0] = "Ape|Nut|Mary|Wim"
$aaa [1] = "Ape;Nut;Mary;Wim"

_ArrayDisplay($aaa)

Attachments (0)

Change History (2)

comment:1 by Valik, on Apr 25, 2009 at 4:31:24 PM

Resolution: No Bug
Status: newclosed

You don't say?

comment:2 by Jpm, on Apr 25, 2009 at 4:53:42 PM

_ArrayDisplay display with a GUICtrlListView function which needs to use a separator by default "|" is used that the reason why the first entry is truncated.
Just use another unused separator so the display cannot stop on such character.

_ArrayDisplay($aaa,"",-1,0,"-")

Modify Ticket

Action
as closed The owner will remain Gary.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.