#AM TCL Lists
Thanks for the explanation of the lists. It's good to know that I am only
paying the memory price for the list once, and have no problem keeping it in my
program in that case.
I saw the GetCellText and the initialization code, and believe I understand
them.
However, the example I saw assumes that the rows are all added at
initialization. In my case, at initialization I create an instance of the
table, but it is empty. Then, as the program runs, it begins to fill up.
My question is how to add rows at that later date from a different part of the
program. That is, the instance variable is not global, so what do I refer to
when I want to say "x->addrow()"? What is 'x' and where do I get it from if it
is not a 'gX' global?
I'll look at AMReminder again and see if I can fathom this out from there. I
had looked through Rich's book and failed to figure it out, and your manual has
no list of classes and methods as I expected.
– Burt