Modify

Opened 16 years ago

Closed 16 years ago

#1632 closed Feature Request (Rejected)

UDF to display a table

Reported by: wim_hekkenberg@… Owned by:
Milestone: Component: AutoIt
Version: Severity: None
Keywords: array, debug, console Cc:

Description

It would be handy to have an UDF who combines the consolewrite function with _ArrayDisplay.
So for debugging purposes we could display the content of an array to the console.

Attachments (0)

Change History (4)

comment:1 by TicketCleanup, 16 years ago

Version: 3.3.6.0

Automatic ticket cleanup.

comment:2 by jchd, 16 years ago

You can use _SQLite_Display2DResult from SQLite.au3 or, better, copy it and make your own.

comment:3 by anonymous, 16 years ago

debug.au3 UDF can also be used to display array's.
note: It has a (easy to adjust if needed) build in string-size display limiter.

comment:4 by J-Paul Mesnage, 16 years ago

Resolution: Rejected
Status: newclosed

As mention by @anonymous just use debug.au3

#include <Debug.au3>
_DebugSetup("", 2)

Global $array[3][2] = [[1,2], [2,3], [3,4]]

_DebugReportVar("array", $array)

Modify Ticket

Action
as closed The ticket will remain with no owner.

Add Comment


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