Robert Spratlin
Robert Spratlin

Reputation: 325

Using a JScrollPane

My program needs to be able to display data on screen for an unknown number of objects.

I am using Netbeans GUI creator but i have no idea of how to have the data for these objects displayed inside the JScrollPane

Upvotes: 0

Views: 67

Answers (1)

MadProgrammer
MadProgrammer

Reputation: 347184

You're question is vague. You don't provide any information about "how" you might like to display these objects.

Start by having a read through How to use Scroll Panes.

You should also have a look at How to use Lists and How to use Tables, which provide different ways of showing data.

Basically, you need to supply a "view" to the scroll. This would be you base component, onto which other components would be added.

Upvotes: 3

Related Questions