How to tell which app on N85 held up the connectio...

There are time the network connection indicator shows up no matter GPRS or 3G for no appearent reason, my phone drain battery quick especially when it is on 3G, but it seems no way to tell exactly what app is using the connection, or I can deal with it.

Thanks for the response kps.
looks like you may want to use JButton<<I had tried JLabel and JButton but neither had a solution. I now know to use getSource which works
You are creating so many listener classes...whereas you need to have only one class and use the same object to register for all JButtons...<<Someone else has made the same point. I think I know what you mean by this, but am not sure how to implement.
Thanks
Mark

Similar Messages

  • How can I tell which apps were purchased on my account?

    I did search for answers but couldn't find one that fit.
    I have an iPhone and so does our son. 
    Early on my son purchased apps on my account and downloaded them on HIS iphone.  Eventually, I got him his own iPhone account and so he has also purchsed apps on his own account and downloaded them on his phone. 
    When we open iTunes and connect his phone, there is a list of apps that are on his phone.
    QUESTION
    How can we tell which apps were purchased on HIS iTunes acct and which were purchased on MY iTunes acct? 
    I don't want to DO anything with the apps, I just want to know one from another. 
    Thanks in advance!!

    List of authorized computers - https://discussions.apple.com/thread/4090165 - there isn't one.

  • Is there a way to view all of my reviews in the iOS App Store in one place, or even just to tell which apps I've reviewed and which I haven't?

    The title pretty much covers it.  I'd like to be able to tell which apps I've already reviewed, and which I haven't, so that I can review apps I haven't yet.  I'd also like to be able to read reviews I've already posted so that I can post follow-ups if my opinions have changed with further use of the app.  Any ideas?  Thanks!
    -Pete

    You can do this in iTunes on your computer,  click on iTunes Store > click Account > click Manage next to Reviews and Ratings.
    More info in this Apple doc -> iTunes Store: How to remove a review you've written

  • How to tell which JButton is clicked?

    I have a layout with 3 panels. Each panel has an 'Add' button inside it. However, I can't work out how to tell which 'Add' button has been clicked by the user. Normally I would put code to select from the text on the button, but this time they are all the same. Any ideas how I can do it?
    Thanks

    DrLaszloJamf: Do you have a simple example that you
    could post? I thought all
    ActionListeners/MouseListeners in the same class had
    to be dealt with in the same place.I'll give you an example in a mo', but here's another solution if you really
    want one ActionListener to listen to multiple sources: explicitly set the
    button's actionCommand strings. This string defaults to the button's text,
    but can be explicitly set to anything you want. This is useful, for obvious
    reasons, if you are writing a multilingual app (I'm Canadian, so that's
    part of the furniture).
    import java.awt.event.*;
    import javax.swing.*;
    public class Example implements ActionListener {
        private static final String MUG_COMMAND = "mug";
        private static final String WUMP_COMMAND = "wump";
        public void actionPerformed(ActionEvent event) {
            String actionCommand = event.getActionCommand();
            if (MUG_COMMAND.equals(actionCommand))
                System.out.println("doing mug action");
            else if (WUMP_COMMAND.equals(actionCommand))
                System.out.println("doing wump action");
            else
                System.out.println("neither mug nor wump: " + actionCommand);
        public static void main(String[] args) {
            ActionListener app = new Example();
            JPanel contentPane = new JPanel();
            JButton button1 = new JButton("add");
            button1.setActionCommand(MUG_COMMAND);
            button1.addActionListener(app);
            contentPane.add(button1);
            JButton button2 = new JButton("add");
            button2.setActionCommand(WUMP_COMMAND);
            button2.addActionListener(app);
            contentPane.add(button2);
            JButton button3 = new JButton("add");
            button3.addActionListener(app);
            contentPane.add(button3);
            JFrame.setDefaultLookAndFeelDecorated(true);
            final JFrame f = new JFrame("Mugwump");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.setContentPane(contentPane);
            f.pack();
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    f.setLocationRelativeTo(null);
                    f.setVisible(true);
    }

  • HT201302 I am trying to upload pictures from my phone to my computer and I'm getting an error message that a photo is corrupted so it can't download.  I don't know how to tell which of the photos is corrupted so that I can delete it and try again?  Thanks

    I am trying to upload pictures from my phone to my computer and I'm getting an error message that a photo is corrupted so it can't download.  I don't know how to tell which of the photos is corrupted so that I can delete it and try again?  Thanks!

    If this is an iCloud account the Outbox only appears when sending an email, so if it is still trying I suppose it should be showing now (not sure though, hard to replicate this)
    What type of email account?

  • How to tell: Which version of camera raw do I have?

    How to tell which version of camera raw I have? The only Google search I found answering this question refers to is 2 years old and seems to no longer apply. There is no File, Edit etc. menu on the new version of Camera Raw with (Photoshop/Bridge CS6). I do use Adobe Application Manager to do my updates telling me if a new version exists or not, nevertheless I would like to know.

    The F key works as described for me in CS6-ACR7.4 with ACR as the window with focus.  The same function is available using the double-arrow-window icon at the right of the Preview checkbox near the top right of the preview area. 
    When in full-screen mode there is no title bar, but when I press the F key or click the double-arrow, again, ACR becomes smaller and I can see the title bar that includes the ACR version and camera model.  This is on Windows7-64-bit on a 1600x1050 monitor.  Perhaps you’re ACR’s title bar is off the top of the screen so you can’t see it, or maybe ACR optimizes some things if you have a smallish display—do you?
    A plug-in is a program that interfaces with another program but is not independently runnable application, itself, bit is independently updatable, so in this instance, Photoshop doesn’t need to be downloaded and installed every time Adobe adds support for a few more cameras.

  • How to tell which photos in iPhoto are HDR images.

    Does anyone know how to tell which photos in iPhoto are HDR images.  When I click on the Info button for the image it doesn't indicate if it was an HDR.
    Does anyone have any information about this?
    I'm using a new iPhone 5s with basically a new iMac.
    Thanks,
    Hagrid...

    You can do a filter on your library with "File Status" is "Missing". The "File Status" query is not available by default, but you can add it by clicking the upper-right button in the filter window.
    nathan

  • How to tell which node a session connects to in 9i RAC

    I have a 6 nodes 9i RAC database. While running a process, how to tell which node it is connecting to?

    Hi,
    SQL> select inst_id, sid, username from gv$session ;
    inst_id is the instance number a session is running on.
    select from the v$instance view to know to instance number you are actually connect to
    SQL> select instance_number from v$instance ;
    INSTANCE_NUMBER
    1
    note the the "g" before the view "v$session", that's for GLOBAL (all instances of the cluster) : check the views gv$parameter, etc...
    Fred

  • How to tell which model?

    I am trying to identify exactly which model MacBook my friend has. I emailed a copy of her System Profile to my laptop, figuring that's all I needed. Her machine is no longer available to me to look at.
    Well, she has a white MacBook that fits two closely related models and I can't tell which one hers is just using the Profile. It is either the Apple MacBook "Core 2 Duo" 2.0 13" (White/06) Specs (MA700LL/A) or the Apple MacBook "Core 2 Duo" 2.0 13" (White/07) Specs (MB061LL/A). I can't find a part number in the Profile. The main difference seems to be that the standard optical drive for the 06 was a 6x Superdrive and for the 07 was an 8x Combo drive. The Disc Burning subsection of the Profile is:
    Firmware Revision: BE38
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipping Drive)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +R DL, +RW
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD-DAO
    Media: To show the available burn speeds, insert a disc and choose View > Refresh
    I'm not really clear on what this stuff means. It looks to me as though it must be a Superdrive, which would make her MacBook the 06 model. Can anyone tell me definitively?

    Possibly a quicker solution: plug her serial number into the online service assistant and it should tell you the resulting model.
    Matt

  • How can I remove apps no longer wanted from the cloud

    How can I remove apps no longer wanted from the cloud? they are not used any more and taking up space.

    Welcome to the Apple community Mickeymom.
    The apps are not actually in your iCloud storage, they are links to the apps in the App Store. What you are seeing is your purchase history and as such cannot be deleted.
    You can however hide your purchases, which you can do from the QuickLinks > Purchased option from the main page in the iTunes Store on your computer.

  • How can I move apps from one computer to the other?

    How can I move apps from one computer to the other?
    (preferably without iCloud)

    Backup your iTunes library to an external drive and onto the other computer
    http://support.apple.com/kb/ht1751

  • HT4623 How do I close apps that are running in the background.  If you double click button you used to be able to press and hold for the "x" to come up to allow you to close, but now I can't .

    How do I close apps that are running in the background.  You used to double press the button, and then press and hold to allow the "x" to come up, so you could close them down.

    Close all apps in multi-task window
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • Hi, I wanna know which app's are included in the Creative Cloud licence. Are some of them trial o life time?

    Hi, I wanna know which app's are included in the Creative Cloud licence. Are some of them trial o life time?

    Please check the app list from Explore Adobe desktop apps | Adobe Creative Cloud there are no products for life time trial, you will need to purchase within 30 days.
    Regards
    Rajshree

  • How to check which version of Jdk installed on the machine?

    How to check which version of Jdk installed on the machine?
    & Which version of Oracle Insatlled on my machine?

    String version = System.getProperty("java.version"); %

  • How can I tell which apps are using data

    Perhaps this is a suggestion, just in case someone who is in a position to note this at Apple (not likely?) might read it.
    How about an app included in the OS that allows users to track which apps are transmitting and receiving data through cellular data and/or wireless.
    I keep getting charged by AT&T (it took restraint to not type a bunch of explatives before AT&T) for escessive data usage, even though I'm in wifi 90%+ of each day, and purposely restrict using it when not in wifi. Seriously, I don't now how I could use it less barring not using it at all, and I still get charged for data. I have no idea how to control this since I cannot tell which, if any, apps are transmitting data in the background, or if that's even possible.
    Seriously annoyed at getting charged extra when the 'service' they provide barely works for me the miniscule amount of times I try to use it.

    This is a user to user forum.
    You can leave feedback here
    www.apple.com/feedback/
    You could also try searching for an app that tracks data usage

Maybe you are looking for