ok I have declared a variable as Private Static.
but in a SUB I do that :Code:public class tp3
{
private static String allInformation[];
...
but now I want to use the DATA in the ARRAY in an other sub and I can not find it because it's empty ?Code:allInformation = new String[10000];
for (i = 0; i < 10000; ++i)
allInformation[i] = new String();
//After that code I start to pu DATA in the ARRAY.
//All is great since that state.
Why?
