How add scroll pane to frame? explain with example?

Questions by suresh.bandlamudi   answers by suresh.bandlamudi

Showing Answers 1 - 4 of 4 Answers

priyanka11

  • Apr 12th, 2006
 

JPanel p=new JPanel();

int v=ScrollPaneConstant.VERTICAL_SCROLLBAR_ALWAYS;

int h=ScrollPaneConstant.HORIZONTAL_SCROLLBAR_ALWAYS;

JScrollPane jsp=new JScrollPane(p,v,h);

p.add(jsp);

  Was this answer useful?  Yes

sivasundararajan

  • Nov 20th, 2006
 

it is "ScrollPaneConstants" and not "ScrollPaneConstant"

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions