I can tell the differnce when listening to "One More Time" by Daft Punk...

...The 356kb version when compared to a 128kb version I had. The electronic sounds sound a lot more crisper then on the other one...not to mention it doesn't make a fuzzy sound when I turn it up high on the iPod...but then again, like I said in another thread, I also compared "Smile" by Lily Allen and they sounded very much the same. I'm also using noise-cancelling headphones and a brand new audio card so it should be easy to hear the difference when played...to tell you the truth, it's better on a few songs but sound very much the same on other songs...it depends on what the song is and what type of audio equipment you have.
  Windows XP  

If the errors are consistent across OS (ie LiveCD, Windows?)  then your motherboard is most likely on it's way out and needs replacing
You could try removing the motherboard cell battery and doing the "classic capacitor flush" again. Leaving the battery out for a period of time generally has the same effect and in "classic" IT style fixes numerous woes... have you tried a different cable?
If, after replacing the battery, the problem has disappeared I would still treat the hardware as suspect and have it replaced as soon as possible. These sorts of brain farts typically reappear sooner rather than later

Similar Messages

  • Want my JFrame to be the *only* one that can end the program when closed

    Hi all,
    I have an application that is essentially a launcher for other applications -- it's a holder to allow us to demo our work and other Java examples (not necessarily our work). The launcher will either run methods to launch an application or will find a class's main method and invoke that.
    In all cases, the other applications open up their own JFrames, separate from my launcher (this is a good thing). The problem is that, in general, the other JFrames are set to EXIT_ON_CLOSE. This means that if the user closes the second window, everything will close.
    Is there anyway to prevent this from happening? I'd like either a way to say that my JFrame is the only one that can exit the program when closed, or to say globally that JFrames can't exit on close, and then re-work my initial frame so that it is still able to exit.
    Note that changing all the other applications so that they do not include the EXIT_ON_CLOSE line is not an option (several of the applications we have the right to use, but not the right to modify, for instance).
    Any thoughts?
    Thanks,
    Sam

    Darryl.Burke wrote:
    I have a similar launcher application and this is how I tackled the issue....
    Window[] windows = Window.getWindows();
    This seems like a great work-around. The only problem is that Window.getWindows() is only 6.0, and unfortunately I can only assume 5.0. I can't see another method in the Window class that will return unowned windows -- is there another method that you know of?
    Edit: I found I can use Frame.getFrames() instead, but unfortunately I've discovered this doesn't solve my problem. One of the applications is listening to window closing and is calling System.exit(0) itself, and is not using EXIT_ON_CLOSE as I previously thought. So I think that launching a new JVM may be the only option.... Any advice on how to do this? I'm a little stuck with the ProcessBuilder stuff above.
    >
    edit In future (not this time), Swing related questions should be posted in the [Swing forum|http://forums.sun.com/forum.jspa?forumID=57]
    I guess I was thinking this as a process-oriented question (I had already been thinking of the "different JVM" tactic), but the other option was to think of it as a pure-swing problem, like your solution above. Guess I should have just cross-posted -- everyone loves that! ;-)
    Edited by: Asbestos on Dec 18, 2008 12:32 PM

  • When i send a PDF file to out side print, some of the things I aded dose not print. Is there a way I can "close" the PDF when i finish the work- so' every thing will be printed for sure

    when i send a PDF file to out side print, some of the things I aded dose not print.
    Is there a way I can "close" the PDF when i finish the work- so' every thing will be printed for sure

    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Or you can use your Apple ID to register with this site and go the Apple BugReporter. Supposedly you will get an answer if you submit feedback.
    Feedback via Apple Developer

  • Macbook Pro retina display 13 inch stopped charging. Charger LED also not on while plugged in. The battery fully drained off but the system can detect the charger when it was switched on.

    Macbook Pro retina display 13 inch 2014 model stopped charging. Charger LED also not on while plugged in. The battery fully drained off so the system can not be started but the system can detect the charger when earlier it was switched on before draining off the charge. Charger type magsafe 60W.

    Once you have examined the power inlet on the computer for dirt, and made certain that the pins on the end of the MagSafe cord are free to move in and out to make contact, there is very little you can do yourself.
    You will need to visit your Apple Store (FREE with appointment) or your Apple-Authorized Service Provider (policy varies). They work on these all the time and have good expertise and lots of spare parts to try to determine the problem.

  • How do I set a specific page to open when I open a new tab in Firefox? I can open the page when initially opening Firefox, but not for subsequent tabs/pages.

    How do I set a specific page to open when I open a new tab in Firefox? I can open the page when initially opening Firefox, but not for subsequent tabs/pages.

    You can use an extension to set which page to open in a new tab:
    *NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    *My Homepage: https://addons.mozilla.org/firefox/addon/my-homepage/

  • How i can increase the volume when i playing a video? dont showing the volume control in the player..

    how i can increase the volume when i playing a video? dont showing the volume control in the video player..

    Are you sure you increased the caller volume? This is only adjustable while in conversation. So, while you are calling you'll see a few icons on your screen and one of them is to adjust your caller volume.

  • Where can close the objects when i am using prepareStatement

    hi,
    where can close the objects when i am using prepareStatement
    the following is code i am using.
    Connection connection;
         PreparedStatement prepare;
         JTextField tfStateNameEng;
         JTextField tfStateNameKan;
         JButton save;
         public DynamicSQL(){
    try{
         Class.forName("com.mysql.jdbc.Driver");
    connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/kantest","gk","gk");
         String sql ="insert into daya (Name,Name_KAN) values (?,?)";
         prepare = connection.prepareStatement(sql);
    }catch(Exception e){System.out.println(e);}
         tfStateNameEng = new JTextField(20);
         tfStateNameKan = new JTextField(20);
         save = new JButton("save");
         save.addActionListener(this);
         this.getContentPane().add(tfStateNameEng,"North");
         this.getContentPane().add(tfStateNameKan,"Center");
         this.getContentPane().add(save,"South");
         pack();
         setVisible(true);
         setDefaultCloseOperation(EXIT_ON_CLOSE);
    public void actionPerformed(ActionEvent ae){
         try{
              prepare.clearParameters();
              prepare.setString(1,tfStateNameEng.getText());
              prepare.setString(2,tfStateNameKan.getText());
              prepare.executeUpdate();
              }catch(Exception e){System.out.println(e);}
    /*try{
              //     connection.close(); // if going to close object here then it won't work
                   //prepare.close();//next time.
              }catch(Exception e){} */
         public static void main(String args[]){
              new DynamicSQL();
    thanks
    daya

    hello,
    ok.
    thanks
    daya

  • [svn] 1594: Update the warning message when outbound throttle policy of REPLACE is used one more time .

    Revision: 1594
    Author: [email protected]
    Date: 2008-05-07 11:10:27 -0700 (Wed, 07 May 2008)
    Log Message:
    Update the warning message when outbound throttle policy of REPLACE is used one more time. Now the warning says this. . .
    Throttle outbound policy 'REPLACE' found on message destination 'MESSAGE_DESTINATION'. The 'REPLACE' throttle outbound policy has been deprecated. Please remove it from your configuration file.
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/MessageDestination.java

    hamish72 wrote:
    You can still download as much as you can only a lot slower during peak times off peak will not be restricted.
    Thanks for this explanation. I had taken it that it was at all times.
    As I said in the first place it will be great if they throttle me to 1Mb at peak times as it will be better half the time than I am getting anyway!!!!!!!!!
    hamish72 wrote:
    Have you chased up why your line is so bad, long way from exchange and so on
    Posting your router stats may get advice from someone
    enter for homehub for other routers will differ
    192.168.1.254 in browser click A to Z top right
    then ADSL enter pas and click MORE DETAIL
    POST RESULTS
    Also post results of test at ( best done from master test socket)
    http://speedtester.bt.com/
    Connection Information
    Line state
    Connected
    Connection time
    6 days, 11:57:55
    Downstream
    5,760 Kbps
    Upstream
    448 Kbps
    ADSL Settings
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    G.992.1 Annex A
    Latency type
    Interleaved
    Noise margin (Down/Up)
    5.7 dB / 21.0 dB
    Line attenuation (Down/Up)
    44.6 dB / 24.0 dB
    Output power (Down/Up)
    8.9 dBm / 1.6 dBm
    Loss of Framing (Local/Remote)
    0 / 0
    Loss of Signal (Local/Remote)
    0 / 0
    Loss of Power (Local/Remote)
    0 / 0
    FEC Errors (Down/Up)
    25279 / 134
    CRC Errors (Down/Up)
    700 / 196
    HEC Errors (Down/Up)
    5427 / 142
    Error Seconds (Local/Remote)
    477 / 102

  • I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine

    I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine
    and if it yes i want to know if i have 1TB hard disk to use the 500gb for time machine and the other 500gb for normal use

    thank you very much because i am considering to buy the porsche design hard disk 1TB and i want to have it for normal use and for time machine is a pitty to give 1TB for back up only again thanks and i know seperate the back and the working jobs are better but the i have to have 2 hardisks and i want only 1

  • I have two phones, one (4S) with Bell in Canada, the other (5, soon enough) with ATT in the US. Since I spend more time in Canada, I'd rather the 5 up there. Can I swap the sim cards? Neither phone is unlocked.

    I have two phones, one (4S) with Bell in Canada, the other (5, soon enough) with ATT in the US. Since I spend more time in Canada, I'd rather the 5 up there. Can I swap the sim cards? Neither phone is unlocked.

    iphone 5 will use nanosim instead of microsim so that one won't work
    you could check you with carrier to see if they will give you another sim though but I dunno if the ATT 5 will have the right data bands so you might not get LTE or w/e

  • Hello, i was wondering why itunes retains all old backups of ipad/ipone... is thier a way of overwritting the backups when a new one is created ?

    Hello, i was wondering why itunes retains all old backups of ipad/ipone... is thier a way of overwritting the backups when a new one is created ?

    That is covered here:
    iTunes: Back up your iTunes library by copying to an external hard drive
    What kind of photos are you talking about?
    Ones in the iPod's Camera Roll album are included in the iPod backup that iTunes makes. Photos synced to the iPod or not and they are not in your iTunes library either. You have to back those up separately.
    Also the iPod backup that iTunes makes is not included in your iTunes library. It location is listed here:
    iTunes: About iOS backups. So back that up too.

  • My iphone has broken and I had songs that I had purchased on there that I had not yet backed up on my computer. apparently you can download the tracks one more time free of charge does anybody know how??

    how do you re download tracks that are on a broken iphone???

    apparently you can download the tracks one more time free of charge does anybody know how??"
    Not true.  You get one and only one download.
    In some instances, itunes has allowed another download to a few.  This is not the norm.
    You can try contacting itunes support and asking for an exception, but they are under no obligation to allow.
    Hope all goes well.
    http://www.apple.com/support/itunes

  • How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album :)?

    How can i Delete all foto from my iphone and after some time get them one more time on it but not as a new album, i want them in the camera roll ?

    How can I delete EVERY THING off my Mac and have it like new?
    Boot from the software install DVD and do an "erase and install" when prompted.

  • Hi i received the nano 7th gen for Christmas and I only seem to get 5 hours of battery life. I use the Bluetooth and Nike app so I expect more drain on the battery.  But I got more time out of running with my iPhone. Does this sound normal? I thought I sh

    Hi i received the nano 7th gen for Christmas and I only seem to get 5 hours of battery life. I use the Bluetooth and Nike app so I expect more drain on the battery.  But I got more time out of running with my iPhone. Does this sound normal? I thought I should get close to 30 hrs of just play time alone.
    ALso, my wife got me the Belkin armband to run with the nano but I sweat through the band resulting in the back of the iPod to get wet. Surely this is not good. Anyone have a recommendation for an armband that keeps moisture away from the pod?

    iPod Nano are small and they don't use Wi-Fi access so you get less power time on a Nano. As for iPhone, since you got apps, Wi-Fi + 3G access, and everything else, they give you more time so you can keep using. Nanos are ment to listen to music, listen to radio, view your photos, watch videos (without Wi-Fi) and since you got BlueTooth on the nano, it counts as wireless access so it drains your battery faster.

  • How to download one more time the purchased content?

    I purchased yesterday the OST of Fast Five, and unexpectedly I deleted it from my Mac. How to access it one more time?

    If you are in a country where you can re-download music, and if it is still in the store, then it should show under the Purchased link under Quicklinks on the right-hand side of the iTunes store home page on your computer's iTunes for re-downloading. If you aren't in a country where music can currently be re-downloaded then you will need to try contacting iTunes Support and see if they will grant you a re-download : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for