07-20-2011 07:36 AM
I have two classes named Screen1 and Screen2.
in Screen 2 there is a CheckBoxField.
String[] choices = {"AB","CD","EF","GH"};
for(int i=0; i<choices.length;i++){
if(checkBox[i].getChecked()) {
c1[k]=checkBox[i].getLabel();
k++;
}}
by the above code i can able to put the selected fields in a String of array c1.
But i want to access that c1(string array) in anther class i.e Screeen1.
Both the classes are public.
But my program throws NULL POINTER EXCEPTION.
Please any one reply.
Thank you.
07-20-2011 08:07 AM
07-20-2011 08:23 AM
Sorry Sir,
Both the classes extends MainScreen.
In both the Classes I have default constructors only. Then how can i call
UiApplication.getUiApplication().pushScreen(new nextclass(c1));
07-20-2011 11:49 PM
Hi,
You can have parameters in the constructors and same arguments(type) you have to pass from calling function.
can u post your code
Thanks & Regards
pp