Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / GUI / April 2004

Tip: Looking for answers? Try searching our database.

Swing: JTabbedPanes

Thread view: 
Logical - 28 Apr 2004 05:21 GMT
Hi

I'm using tabs for different 'modes' of operation. What I need to know is
how to 'listen' for when a tab is selected.

The Tutorial on JTabbedPanes makes no mention of it, only that the keyboard
and mouse listeners for changing a tab have been taken care of for us when
using JTabbedPane.

Any help greatly appreciated.
Daniel Sjöblom - 28 Apr 2004 07:52 GMT
> Hi
>
[quoted text clipped - 6 lines]
>
> Any help greatly appreciated.

import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
Signature

Daniel Sjöblom
Remove _NOSPAM to reply by mail

Manish Hatwalne - 28 Apr 2004 08:04 GMT
You'll need to implement a ChangeListener and implement following method -

   public void stateChanged(ChangeEvent e){
       final int tabIndex = yourTabbedPane.getSelectedIndex();
       //doSomething();
 }

HTH,
- Manish

> Hi
>
[quoted text clipped - 6 lines]
>
> Any help greatly appreciated.
Josef Garvi - 28 Apr 2004 08:29 GMT
> Hi
>
[quoted text clipped - 6 lines]
>
> Any help greatly appreciated.

myTabbedPane.addChangeListener(new ChangeListener() {
    public void stateChanged(ChangeEvent e) {
        // do something here
    }
});

Signature

Josef Garvi

"Reversing desertification through drought tolerant trees"
http://www.eden-foundation.org/

new income - better environment - more food - less poverty

Logical - 28 Apr 2004 08:53 GMT
> myTabbedPane.addChangeListener(new ChangeListener() {
> public void stateChanged(ChangeEvent e) {
> // do something here
> }
> });

Thank you all for the help. Worked a charm!


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.