I am using this code to set the scrollBar to the VerticalFieldManager in Blackberry
VerticalFieldManager temp2=new VerticalFieldManager(VerticalFieldManag
My solution:
VerticalFieldManager temp2=new VerticalFieldManager(Manager.VERTICAL_SCROLL);
LabelField result=new LabelField("Result \n Result\n Result\n Result \n Result\n",FOCUSABLE);
temp2.add(result);
VerticalFieldManager temp=new VerticalFieldManager();
temp.add(temp2);
add(temp);
1. Set VerticalFieldManager style to VERTICAL_SCROLL|VERTICAL_SCROLLBAR
2. Add a new NullField(Field.FOCUSABLE) after LabelField