I have to store a big lot of variables, when I store them using a array there seems to be a crash started. So I want to store them var by var.
The Vars are defined like "N1" up to "N145". I thought there must be a easy way to store with a for loop like
for (value = 1;value < 144;value ++)
{
Var = "N"+Value2String(value);

How can I now get the content of this Nxx Var ??
Must it be a pointer ? Every idea welcome.

Thanks