Post Reply 
storing data in a list while executing a program
06-13-2017, 01:10 PM
Post: #4
RE: storing data in a list while executing a program
It has not much to do with the program, but the list is too long in order to print.
When I create a simple list with length 500 and try to print it in Home view it does not succeed.

What's the problem when you can also see your data in the List catalog?

An alternative it to write your results to the Spreadsheet app,

E.g:

FOR D FROM 1 TO T DO
Spreadsheet.Cell(D,1):=L2(D);
END;

To make it even more user friendly you could add:

STARTAPP("Spreadsheet");
STARTVIEW(2,1); for viewing the Spreadsheet app,
or
STARTVIEW(-6,1); for viewing the List catalog.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: storing data in a list while executing a program - Jan_D - 06-13-2017 01:10 PM



User(s) browsing this thread: 1 Guest(s)