Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-09-2008, 01:14 AM
Member
 
Join Date: Jun 2008
Posts: 1
Newb is on a distinguished road
scrollpane
Yes, it's that age old question again - 'I can't see my scrollpane, does anyone know why?' I had this problem before, and now it's back again and nothing I've tried will fizx it. Code:

Code:
private class ExampleMouseAdapter extends MouseAdapter { public void mouseClicked(MouseEvent event) { // Actions taken when click on board button if (SwingUtilities.isLeftMouseButton(event)) { // Show results up to that stage // clicked on text field // want to execute query up to that point // get the array text field is from and the position within array JTextField clicked = (JTextField)event.getSource(); //etc. JTable table = Table.printData(x.c); JScrollPane s = new JScrollPane(table); s.setBounds(44, 503, 253, 262); frame.getContentPane().add(s); s.repaint(); // frame has been created earlier, I just want the scrollpane to appear when I click something
Any help would be muchly appreciated!
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Tree with Listener not working when added to ScrollPane praveen.kb AWT / Swing 2 01-09-2008 08:06 AM


All times are GMT +3. The time now is 03:57 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org