Modify

Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#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 Changed 15 years ago by Valik

  • Resolution set to No Bug
  • Status changed from new to closed

You don't say?

comment:2 Changed 15 years ago by Jpm

_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,"-")

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Modify Ticket

Action
as closed The owner will remain Gary.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.