Hi,
I want to create a space between two string item.
How can i do so please help me with it.
Thanks
Hi,
I want to create a space between two string item.
How can i do so please help me with it.
Thanks
For using a StringItem:---
Form frm=new Form("");
StringItem si1=new StringItem("Label", "Text");
String si2=new StringItem("Label", "Text");
String si3=new StringItem("Label", "Text");
frm.append(si1);
frm.append(" "); // for getting space
frm.append(si2);
frm.append("\n"); // for getting a new line
frm.append(si3);
Hope u got the result now.
Regards
Vineeth K
Form form = new Form("");
StringItem sItemOne = new StringItem("String Item one","One");
StringItem sItemTwo = new StringItem("String Item Two","Two");
Spacer spacer = new Spacer(width , height) ;
form.append(sItemOne);
form.append(spacer);
form.append(sItemTwo);
checkout this..
thanks,
jitu_goldie..
KEEP TRYING..