Udated to 6-0-2

I updated to 6_0_2 and all the JFileChoosers are taking 8 to 9 seconds to display!
Everything has been working fine. 4 months back I updated to 6_0_1
and it went smoothly.
This weekeend I updated to 6_0_2.
My program no longer works properly. I am pressing a JButton which is
supposed to create and display a JFileChooser, and it's hanging 8 to 9
seconds before displaying the JFileChooser.
I uninstalled 6_0_2 using the Add/Remove programs, went back in and
compiled the program, and ran it thinking that I would just go back to
using the 6_0_1.
It's not working on that now either.
Is there something else I need to delete to completely remove 6_0_2?
I am using Eclipse so I went into the Project Properties and specified to use
the JRE 6_0_1 again, recompiled, and ran it... but it's still now working...
Any help would be appreciated...

I believe I found my answer, so I thought I would share ....
It may not be the update to 6u2 ... When updating to 6u2, I downloaded
the 6u2 install, documents, and source code bundles from Sun, Firefox
put the downloaded zip files onto my Desktop.
Not normally a problem... however, apparently the existance of zip files on
your Desktop is an issue when instantiating a JFileChooser, and causes considerable delays....
Bug 6372808, In progress and submitted on 16-JAN-2006.
Hope this helps someone else.. Hope they fix this soon!
-Deb

Similar Messages

  • I have ios 4.2.1 on my iphone4, now i want to udate it to 6.1.3 .is it possible? if yes then how? and i don't want to update on ios 7 or later pleaase help me

    i have ios 4.2.1 on my iphone4, now i want to udate it to 6.1.3 .is it possible? if yes then how?
    and i don't want to update on ios 7 or later
    pleaase help me

    No you can't.  It is iOS 7 or not at all.  You need to update to the lastest software or not at all, so the choice is yours.  Update to the latest software or not at all.  Stick with what you have.
    Also stop trolling this forum with the same stupid question to which you have had the same answer time and again.

  • After installing the latest udate of Adobe Reader on my MAC, the program crashes every time I open a pdf.

    After installing the latest udate of Adobe Reader on my MAC, the program crashes every time I open a pdf.

    This might help http://www.apple.com/support/ipodtouch/assistant/ipodtouch/

  • Retrieving latest changed date UDATE for Vendor.

    Hi All,
    I have a requirement to retrieve latest changed date UDATE field from CDHDR table based on company code wise??.
    As the vendor can be same for different company codes, I need to retrieve the company code wise latest changed date of vendor.
    Hope am clear.
    Currently am doing this 
    SELECT objectclas objectid tcode udate
        FROM cdhdr INTO  CORRESPONDING FIELDS OF TABLE it_cdhdr
        FOR ALL ENTRIES IN it_lfa2
        WHERE objectclas = 'KRED' AND
              objectid   = it_lfa2-objectid
        AND   change_ind = 'U'.
    SORT it_cdhdr BY objectid udate  DESCENDING.
    Its giving me the latest changed date. But I need latest changed date -company code wise?
    Any help is highly appreciated.
    Thanks & regards
    Himayat.

    Hi,
    Use function module CHANGEDOCUMENT_READ to get the details of CDHDR as well as CDPOS data. Records of table CDPOS where TABNAME = 'LFB1' will have the details related to changes in company-specific data.  Structure EDITPOS of above function module will give you detail information.
    Regards
    Vinod

  • My iPhone 4 will not udate to the ios6

    I have tried 3 times on 2 different PCs to udate my iPhone 4 to the ios 6 update. It says on my phone that the udate is available, and it says on my iTunes that the udate is available. I connect my phone to the PC and to iTunes and the udate starts to download (at a snail's pace). It says it will take anywhere between 17 and 20 hours to complete so I do it before I go to bed. In the morning, is says an error has occurred and the phone has not udated. I do not remember what the exact wording of the error is at this time. I'm in the middle of my 4th try, but am losing hope, hence the attempt at a solution on here. Any suggestions are welcome and very appreciated.

    3g/gprs data have to be enabled on ones subscription with the carrier to be able to access the Internet

  • My firefox udated automatically how do I scroll it back so that my netflix will work again with starlight

    my system was working fine and I could watch my netflix on my pc using the current version of firefox to watch instantly it goes through starlight when I turned on my pc firefox udated now I,m unable to watch netflix on my pc I would like to be told how to go back to the version that was working before the update

    Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily.

  • Most recent date (UDATE) from CDHDR table based on CDPOS

    Hi,
    I am working on one object where i stuck with one issue. The requirement is I have to retrieve the most recent date from CDHDR table based on CHANGENR in CDPOS table. Where i am doing FOR ALL ENTRIES on CDPOS table to get the MAX( date )and i got the error, that aggregate functions are not allowed except COUNT( * ) with for all entries.
    Any thread which can solve this issue would help aswel.
    Please guide me how to achieve this. <removed>
    Edited by: Thomas Zloch on Mar 13, 2010 9:10 PM

    Hi Li,
    Thats was really helpful information , infact my requirement is same as what you said. I even checked in the table entries there is only one changenumber.
    You said we can take the first record, i even did the same. But for TABNAME I have to pass 3 table name 'LFA1', 'LFB1' and 'LFM1'. For FNAME 'LOEVM', 'SPERR'. I have written the code as below.
      SELECT objectclas
                   objectid
                   changenr
                   FROM cdpos
                   INTO TABLE i_cdpos_a1
                   FOR ALL ENTRIES IN i_lfabm1
                   WHERE objectclas = c_kred               "KRED
                   AND objectid EQ i_lfabm1-objectid       "Lifnr
                   AND ( tabname EQ c_lfa1 OR tabname EQ c_lfb1 OR tabname EQ c_lfm1 )          "LFA1, LFB1 and LFM1
                   AND ( fname EQ c_loevm OR fname OR fname EQ c_sperr )    "LOEVM, SPERR
                   AND value_new EQ c_x.
            IF sy-subrc EQ c_0.
              IF i_cdpos_a1[] IS NOT INITIAL.
    Select UDATE from CDHDR based on CHANGENR in CDPOS.
                SELECT objectclas
                       objectid
                       changenr
                       udate
                       FROM cdhdr
                       INTO TABLE i_cdhdr_a1
                       FOR ALL ENTRIES IN i_cdpos_a1
                       WHERE objectclas = c_kred             "KRED
                       AND  objectid EQ i_lfabm1-objectid               "Lifnr
                       AND changenr EQ i_cdpos_a1-changenr.   "(this is coming from CDPOS above selection)
    Here i got UDATE which have all the dates from 3 tables. I have to display in the output the field value (X) of LOEVM and UDATE for LFA1, SPERR value and UDATE for LFA1.Same way for other two tables, I have to display the UDATE and its field value (X). Where UDATE should be most recent date respectively.
    How can I populate the Recent date (UDATE) from one interal table for indvidual field values and table names.

  • Udating material master with changed planned delivery time in contract

    Hi experts ,
    My question is while we are changing the planned delivery time in the contract we need to udate the same in the material master table . so how to update the material master table with new planned delivery time. Is there any FM exits to udate it and if it is then how to use it.
    thanks
    Anshuman

    Hi Madhu ,
    You are right we can use BAPI_MATERIAL_SAVEDATA but if we use it then we have to use BAPI_COMMIT also to make sure that all the changes are saved completly and if we do BAPI_COMMIT then it maye commit all the task which is in queue and it need to update later. So it is again a issue .
    Thanks
    Anshuman

  • Since I have udated my iPhone to 5.0.1. I can not chance or delete any of my contacts! The choice "change" has disapeared! Is there someone to have an idea what is going on?

    Since I have udated my iPhone to 5.0.1. I can not chance or delete any of my contacts! The choice "change" has disapeared! Is there someone to have an idea what is going on?

    Try Settings>iCloud>Contacts>ON it may resolve your problem and enable the + / edit.

  • My time machine backup disc has apps from Mountain Lion that won't open now that I have Yosemite.  They all say need to be upgraded to Yosemite. Go to app store. But app store sees that I have yosemite so doesn't even show me an udate option. How can

    My time machine backup disc has apps from Mountain Lion that won't open now that I have Yosemite.  They all say need to be upgraded to Yosemite. Go to app store. But app store sees that I have yosemite so doesn't even show me an udate option. How can Update these files??

    How do you know they won't run in Yosemite? You're not trying to fiddle with stuff in your backup from the Finder, are you? If so you are likely to render that backup unusable.
    WHen when you restore them from your backup, they should be updateable.

  • I have an i phone 3 g . i want to udate it to latest os . can i update from other pc also ?,

    have an i phone 3 g . i want to udate it to latest os . can i update from other pc also ?, if answer is yes then if after getting update from other pc i will switch to my older pc then latest softer which i have updated will remain or it will switc over to older software?

    If you update from another computer you may lose some of your content.
    If your computer does not have the latest itunes then it will not worl with the iphone at all once you update it.
    Why do you want to update from another computer?

  • I have updated my ipod touch but i have to update iphone and ipad 1 and ipad2 . How can I save the udated software in order to avoid teh time for downloading it again each time

    I have updated my ipod touch but i have to update iphone and ipad 1 and ipad2 . How can I save the udated software in order to avoid teh time for downloading it again each time

    Even though the downloads are for the same iOS version number, they are different downloads and you can't use an iPod iOS update to update an iPhone or iPad etc. The iPad 1 and iPad 2 are also different downloads. So you will need to download different updates for your iPod Touch, iPhone, iPad 1 and the iPad 2.

  • I'm losing my downloads in software udater!!

    I have been trying to download the new Mac OSX udate (10.4.8) which is 147mb, and it keeps getting to 100 and then disconecting/erroring and then when i try again its back to 0 percent, i have to start all over!!
    I'm only on a normal dial up connection that runs slower then normal it runs at 2.0kb. At this speed it takes over 24hrs to get to 100mb!!
    I'm wondering if there is a way to resume the download or if there is some sort of download manager that i can get so i dont have to start all over again? Or if there is any other way to get the download?
    It only happens with the Mac OSX updates cause they are so big!!
    I live 30km out of the nearest town and 100km from my local apple center.
    Broad band is not an option because the phone line is old and not getting updated.
    Could someone please help me as i cant update my computer and really need to.
    Any help would be gretly appreciated!

    I have Download Wizzard. It has a free version with less bells & whistles. Will pick up a download where it left off. It is PPC, so to use it you need to set up a version of your browser to run using Rosetta. Then you could get the Delta or Combo versions of OS X updates from the Apple Downloads page.
    Or...
    Can you make a friend with your Apple Center? Maybe they could burn you a CD/DVD of OS X Updates and mail it for a small/reasonable fee.

  • Software udate

    how long does it take for 2006-06-28 to udate on the nano??? how do i know which USB(1.0 or 2.0) is installed on my sys????
    my nano is taking over two hours now for updating!

    Hello,
    Disconnect your iPod from the computer. Try resetting your iPod, then putting it into disk mode (follow the instructions in that article).
    Plug it back in, see if the Updater works, then try formatting it from "Control Panel":
    Go to:
    "Start>>Control Panel>>Administrative Tools>>Computer Management>>Disk Management".
    Find your iPod's listing (typically "E:" or "F:")
    Right-click it, go to "Format", and start the formatting in "FAT32".
    I hope this helps.
    ~~Kylene

  • HT4623 my ipad says it is udated but it is nly 5.1 and wll not allow me to get 7

    in order to use my company software  need junos ulse which I need ios 6 or  greatter fior, and when I try to update software, it says it s akready updated to 5.1 and will not giive me the option to udate to 6 or 7

    If you have an iPad 1 as is probably the case, iOS 5.1.1 is the last version it can run.
    Regards.

  • Help ! i have done an IOS 5 udate and cant get past the track my iphone set up screen. i have done restored 3 times. going crazy

    Udated to ios 5 and cant get past the find my iphone screen.

    Try deleting an other icloud backup and see if it will automatically backup.

Maybe you are looking for

  • Bug in Column view?

    I've found that in services that I create anew not ones that are available from Apple, I can't use keyboard shortcuts that I've created for those services in column view but can in list or icon view. For example, I just created a service called 'crea

  • Images with Crystal Reports

    Somebody pls. advise if it's possible to display images with Crystal Reports ?! I want to generate a Price Catalog with images.   I have uploaded images into the system. Unfortunately, Oracle Report Builder has let me down. A short tutorial on how to

  • Beginner CSS confusion

    http://larrysullivandesign.com/test/ Question 1 How do I center the content-panel div on the page, on every page in the site? I can't find any way to select it and center it or to center it in the css panel. Why isn't there a command for adding an al

  • CLR.DLL error, empty data

    When I try to install the office 2010, the installation is stopped with a message of error 1935. Looking further I discovered that the clr.dll is in blank it´s with 0kb. I tryed to uninstall and re-install .net 4.0 and didn´t take effect. Another cor

  • Stop of Weblogic Server- WLS_Forms !

    Hi all, I m working on Forms/reports 11gr2 64-bit with Weblogic Server 10.3.6. To stop of Weblogic Server - WSL_Forms/Reports, it has two option; 1. Stop Weblogic Server - WLS_FORMS    (option under Classic Instance/Form Services)., which asks for us