Modify

Opened 14 years ago

Closed 14 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 Changed 14 years ago by TicketCleanup

  • Version 3.3.6.0 deleted

Automatic ticket cleanup.

comment:2 Changed 14 years ago by jchd

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

comment:3 Changed 14 years ago by anonymous

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 Changed 14 years ago by Jpm

  • Resolution set to Rejected
  • Status changed from new to closed

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)

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 ticket will remain with no owner.
Author


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

 
Note: See TracTickets for help on using tickets.