The Artima Developer Community
Sponsored Link

Java Answers Forum
problem with scroll

2 replies on 1 page. Most recent reply: Dec 2, 2004 4:03 AM by Amol Brid

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
karim

Posts: 5
Nickname: apahliani
Registered: Nov, 2004

problem with scroll Posted: Dec 1, 2004 10:45 AM
Reply to this message Reply
Advertisement
Hi,
I am writing an application to show a scroll panel attached to a text area
but it does not appear on the screen. If remove the lines

JScrollPane scrollText = new JScrollPane(textArea);
contentPane.add(scrollText);

and add

contentPane.add(textField)

It appears but without scroll?.


import javax.swing.*;
import java.awt.*;

class TestFrame extends JFrame {
private JTextArea textArea;

public static void main(String[] args) {
TestFrame frame = new TestFrame();
frame.setVisible(true);
}

public TestFrame( ) {

setSize ( 700, 400 );
setLocation ( 5, 5 );

Container contentPane = getContentPane();
contentPane.setBackground(Color.white);
contentPane.setLayout(null);

textArea = new JTextArea();
textArea.setEditable(false);
textArea.setBounds(350, 50, 100, 135);
textArea.setBorder(BorderFactory.createLineBorder(Color.red));
JScrollPane scrollText = new JScrollPane(textArea);
contentPane.add(scrollText);

}



}


Matthias Neumair

Posts: 660
Nickname: neumi
Registered: Sep, 2003

Re: problem with scroll Posted: Dec 2, 2004 1:02 AM
Reply to this message Reply
Your scroll panel has no size;

Amol Brid

Posts: 43
Nickname: amolbrid
Registered: Feb, 2004

Re: problem with scroll Posted: Dec 2, 2004 4:03 AM
Reply to this message Reply
Set the size of the scrollpane:
scrollText.setBounds(350, 50, 100, 135);


Amol Brid.

Flat View: This topic has 2 replies on 1 page
Topic: Copying folders and files Previous Topic   Next Topic Topic: matching of fingerprints in JAVA

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use