Quote:

my_txt = txt_create(1,1);

my_txt2 = txt_create(1,1);

... and so on.



What if the max text strings are 50, I need to
my_txt1 = txt_create(1,1);
my_txt2 = txt_create(1,1);
.
.
my_txt50 = txt_create(1,1);

Is that right?