• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

setting focus to a tab in a JTabbedPane

 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi guys,

I have a frame that has a JTabbedPane(with 2 tabs) & a JButton. As is obvious, at a time contents of only one tab can be seen, and that of the other are hidden...

My problem is at the click of the button, focus ahould be set to the tab whose contents are not seen and thus its contents should become visible.

I am looking only for code that can set the focus to the hidden tab when the JButton is clicked. i.e. the code that can be placed inside the actionPerformed(ActionEvent) method.

Any help provided regarding this would be greately appreciated...
 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
on action performed of button

// index tabbed index
TabbedPane.setSelectedIndex(int index);
 
Parth Bhatt
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks prashant... That solves my problem...
 
If we don't do the shopping, we won't have anything for dinner. And I've invited this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic