14.02.2014, 13:20
Show any (or all) of the lines. This most likely happens when trying to put more than what an array can hold.
Text[6];
Text = "0123456"; would exceed it's size. (7 Characters on a 6 characters array)
Text[6];
Text = "0123456"; would exceed it's size. (7 Characters on a 6 characters array)