Here is a kind o "Hello World" table program...
MODULE pTables;
IMPORT StdTables;
VAR t*: StdTables.Table;
PROCEDURE Test*;
BEGIN
t.SetSize (3, 3);
t.SetLabel (2, "col 2");
t.SetItem (1,2, "ONE-TWO")
END Test;
END -!-pTables.Test
Controls-->New Form, Empty, Controls-->Insert Table Control, Link=pTables.t
(Note: Controls-->New Form, Link=pTables, OK... Won't work!)
Greetings: René Dorta.
On Tue, Aug 11, 2009 at 1:36 PM, Rainer Neubauer <rainer.neubauer{([at]})nowhere.xy
Hi all,
I would like to have a user interface containing table consisting of about 10 rows and 5 columns to show some state of a program.
There is a module StdTables but unfortunately I don't understand how to use it.
Does anybody have a simple application which uses Module StdTables ?
Could anybody give me a kind of "startup" in using this module ?
Thanks in advance,
Rainer
----
To unsubscribe, send a message with body "SIGNOFF BLACKBOX" to LISTSERV{([at]})nowhere.xy---- To unsubscribe, send a message with body "SIGNOFF BLACKBOX" to LISTSERV{([at]})nowhere.xy
Received on Thu Aug 13 2009 - 02:04:57 UTC