Before you copy a string into a string, you have to initialize the target (if this usage of the string will be the first).
Like this:
Code:
TEXT* txt_TxtContent[16];
...
	for(inx=0; inx <16; inx++) {
		txt_TxtContent[inx] = txt_create(1,0);
	}


Last edited by Aku_Aku; 07/06/13 14:56.