Modify ↓
Opened 16 years ago
Closed 16 years ago
#1632 closed Feature Request (Rejected)
UDF to display a table
| Reported by: | 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 , 16 years ago
| Version: | 3.3.6.0 |
|---|
comment:2 by , 16 years ago
You can use _SQLite_Display2DResult from SQLite.au3 or, better, copy it and make your own.
comment:3 by , 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 , 16 years ago
| Resolution: | → Rejected |
|---|---|
| Status: | new → 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)
Note:
See TracTickets
for help on using tickets.

Automatic ticket cleanup.