Problems with repainting in new JD 9.0.4.0

I just installed new JD 9.0.4.0 . I think that from this moment I have problems with painting java graphics objects (for example Application Module tests or simple login dialogs). When I move that window, its remains are left on the screen until I overlap them with other non-java window. Has anybody the same experience ?

I haven't seen this. One thought (call it grasping at straws) would be to set the environment variable: J2D_D3D=false
That disables Java2D and sometimes fixes some quirks.
Rob
Team JDev

Similar Messages

  • Problem with repaint of display after a click event

    Hi,
    I have a problem with repaint of display. In particular in method keyPressed() i inserted a statement that, after i clicked bottom 2 of phone, must draw a string. But this string doesn't drawing.
    Instead if i reduce to icon the window, which emulate my application, and then i enlarge it, i see display repainted with the string.
    I don't know why.
    Any suggestions?
    Please help me.

    modified your code little
    don't draw in keyPressed
    import java.io.IOException;
    import javax.microedition.lcdui.Canvas;
    import javax.microedition.lcdui.Command;
    import javax.microedition.lcdui.CommandListener;
    import javax.microedition.lcdui.Display;
    import javax.microedition.lcdui.Displayable;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    public class PlayerCanvas extends Canvas implements CommandListener{
         Display display;
         Displayable dsp11;
    private Image play, pause, stop, next, previous = null;
    private int gamcode;
    private Command quitCmd = new Command("Back", Command.ITEM, 1);
    public PlayerCanvas(Display display,Displayable dsp11){
         this.display =display;
         this.dsp11 =dsp11;
         addCommand(quitCmd);
         createController();
         setCommandListener(this);
         display.setCurrent(this);
              protected void paint(Graphics g)
              g.setColor(255,200,150);
              g.fillRect(0, 0, getWidth(), getHeight());
              if (play != null){
              g.drawImage(play, getWidth()/5, getHeight()-50, Graphics.BOTTOM | Graphics.HCENTER);
              if (stop != null){
              g.drawImage(stop, getWidth()/5, getHeight()-10, Graphics.BOTTOM | Graphics.HCENTER);
              if (next != null){
              g.drawImage(next, (getWidth()/5)+10, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
              if (previous != null){
              g.drawImage(previous, (getWidth()/5)-30, getHeight()-30, Graphics.BOTTOM | Graphics.LEFT);
                   /////this will draw on key UP
                   g.setColor(0,0,0);
                   System.out.print(gamcode);
                   if(gamcode==Canvas.UP){
                        g.drawString("PROVA",10, 0, 0);
                   }else if(gamcode==Canvas.DOWN){
                        g.drawString("DIFFERENT",10, 30, 0);     
    private void createController()
    try {
    play = Image.createImage("/icon3.png");//replace your original images plz
    pause = Image.createImage("/icon3.png");
    stop = Image.createImage("/icon3.png");
    next = Image.createImage("/icon3.png");
    previous = Image.createImage("/icon3.png");
    } catch (IOException e) {
    play = null;
    pause = null;
    stop = null;
    next = null;
    previous = null;
    if (play == null){
    System.out.println("cannot load play.png");
    if (pause == null){
    System.out.println("cannot load pause.png");
    if (stop == null){
    System.out.println("cannot load stop.png");
    if (next == null){
    System.out.println("cannot load next.png");
    if (previous == null){
    System.out.println("cannot load previous.png");
              protected void keyPressed(int keyCode)
                   repaint();
                   if ( (keyCode == 2) || (UP == getGameAction(keyCode)) ){
                        gamcode = UP;
                        repaint();
                        else if ( (keyCode == 8) || (DOWN == getGameAction(keyCode)) ){
                             gamcode =DOWN;
                             repaint();
              else if ( (keyCode == 4) || (LEFT == getGameAction(keyCode)) ){
              else if ( (keyCode == 6) || (RIGHT == getGameAction(keyCode)) ){
              public void commandAction(Command arg0, Displayable arg1) {
                   // TODO Auto-generated method stub
                   if(arg0==quitCmd){
                        display.setCurrent(dsp11);
    }

  • Pages 08 fonts- problems with Arial, Times New Roman - how do I repair them?

    Pages 08 fonts- problems with Arial, Times New Roman - how do I repair them?
    Using 10.6.8 on MacBook Pro
    Mikeaaa

    I am running Snow Leopard. Transferring the same texts to TextEdit has no problems, so this is a Pages problem, I think.  Corruption of Times New Roman and Arial fonts, I suspect, but where? and what do I do about it? I just need to be pointed to a source of advice, I think.
    Thanks
    Mikeaaa

  • Hai Matt  I have a problem with download a new app. While I bought iphone5, I take iphone to shopkeeper for download some app and videos that he used his Apple ID . That's t problem now.. Not all the time his ID is appearing but some times hi

    Hai Matt
    I have a problem with download a new app. While I bought iphone5, I take iphone to shopkeeper for download some app and videos that he used his Apple ID . That's t problem now.. Not all the time his ID is appearing but some times his Apple ID is appearing that time I can't download app, videos, songs.. So please guide me to remove that ID or how to solve that..
    Regards
    Babu

    Check Settings/iTunes and AppStore/AppleID and make sure that your AppleID is filled in. If not , sign out and sign in with the correct info.
    To make sure that no other apps or videos are on your device than the one you bought, set it up as new device, explained here: How to back up your data and set up as a new device
    Content that is not bought with your ID can't be used on your phone, that's why his ID and password is asked when you try to use those apps downloaded in the store.

  • Hello, I have a big batterylife problem with my brand new iPod touch 4Gen 8GB white. Please help...

    Hello, I have a big batterylife problem with my brand new iPod touch 4Gen 8GB white. Please help?

    What battery life are you getting?  Is it short when you are using the iPod? When it is sleeping?

  • Problem with safari on new i phone

    i am having a problem with safari on my new i phone the address bar is covering up some of the top of the web page and it will not let me scroll up any more has any els had this problem and can any on help

    I too, am having problem with SAFARI.
    I have been unable to log in my Flickr account. I did succeed the first day and then...it just idle and no connection with site.
    The ZOOM problem has occurred to me in a couple occasions. I did close the browser and re-opening it did fix it. Miracle or need a fix??

  • Problem with watchpoints in new abap debugger

    Hello,
    when using the new debugger to watch a value-parameter in a form, the debugger stops every time the value of the variable in the watchpoint is changed.
    Even when there is an extra condition entered.
    Is this a bug, or is it supposed to happen that way because the parameter is passed as a value rather than a reference?
    This is a bit hard to explain, so here is a simple code sample demonstrating the behaviour :
    REPORT ztestndeb.
    data : test type string.
    do 5 times.
      concatenate test 'A' into test.
      write : / test.
      perform valueparamform using test.
    enddo.
    *&      Form  valueparamform
    *       text
    *      -->P_TEST  text
    form valueparamform  using    value(p_test).
    * watchpoint for field p_TEST with condition p_TEST eq 'AAA' stops every time value of p_test changes                   
      write : 'Valueparameter : ', p_test.
    endform.                    " valueparamform
    Our sap version is :
    sap version : SAP ECC 6.0
    SAP_ABA        700       0011 SAPKA70011    
    SAP_BASIS      700       0011 SAPKB70011

    I am having the same problems with the additional conditions - does anyone know how to get this to work?

  • Problem with my brand new mp3 player Zen Stone Plus 2GB ( with built in speaker )

    Hi .
    I have purchased the following Zen Stone Plus 2GB with built in speaker on 24.06.2008.
    From day one, it had a charging problem . Initial charging it'snever go beyond 87%.
    After using it for 2 days, at the time of recharging , I found my player won`t get dectected in my PC .
    I took the set to the vendor for a checkup . He tried to solve it by resetting , formating etc. But he could only able to to format it's sacrificing its 50% of its allocated space.
    My vendor then changed the set with a brand new one, againts that faulty one .
    Now the new one worked well for 3 - 4 days , but it is now totally dead .
    But the set did not give any indication before it become completely dead.
    A few dust particles inside the LCD screen was also observed. I can`t understand how come dust particles can enter inside
    a player which is sealed box pack .
    Next issue is with the battery which CREATIVE promised of giving a backup of approx 20 hrs of continious playback , which with minimal scuffling and with minimal settings lasted for 0 hrs approx ( 50% less than promised ).
    Another thing that i must state is the problem of FM Reception . It is simply terrible . In the same area where my mobile's FM reception is fine , Zen Stone's FM failed to give any reception .
    I came to know about Zen Stone Plus from of my friend , who is using Zen Stone Plus GB without any problem for long time.
    Pls tell me what to do now, since my player is compleately out of order now , and pls suggest me something regarding the issue of battery backup , FM reception ... etc.
    Now i am in a total mess . I just dont know what to do with the set that is few days old .
    Pls help urgently .
    Waiting for any valued suggestion .
    Bye ...

    Hi,
    I would suggest getting in touch with support, they might be able to help you with this.
    Go to the Support section of the website and select your product. On your right, click on Contact Us. You will be provided with a list of troubleshooting options. Click on the one closes to your issue. Go through the suggestions and if the does not work or you have already tried that, scroll to the bottom and click on No, escalate to email. This should bring you to the email form to contact support.

  • Problem with install on new compy, something to do with external?

    Hello, so I have been having a few problems with installing Arch on my new computer. On my old laptop I never ran into this problem on any distro of LINUX I installed, nor on any other of the systems I have installed Arch on. I believe it might have something to do with the fact that I am running the live cd off of an external dvd drive maybe? I am kind of stuck here, so any help would be greatly appreciated! Thanks!
    If it helps
    System Specs:
    Motherboard: ASROCK 890FX Deluxe3
    Processor: AMD Phenom II X4 955
    Graphics Card: ATI Radeon HD 5700 Series
    Hard Drives: 2 SATA 160gb hd RAID 0, and one 160gb ATA hd
    OS: Windows 7 Professional on the RAID 0, hoping to put ARCH on the ATA (I have tried booting the ATA first in the list behind the USB DVDROM to no avail)
    External Drive: Sony DVD/CD RW drive DRX-510UL
    External DVDROM is the exact same drive I used to install windows 7 professional.
    External DVDROM is plugged into one of my USB 2.0 ports, but the error still persists.
    I am using the EXACT same disk I used when installing it on my past computer.
    Trying to install x86_64 version of Arch, gets past the splash.
    Output that I could catch:
    :: Running Hook [archiso]
    :: Rinning Hook [archiso_pxe_nbd]
    :: Mounting tmpfs, size 75%... done.
    :: Waiting for boot device...
    Waiting 30 seconds for device /dev/disk/by-label/ARCH_201005 ...
    usb 9-1 : device descriptor read/64, error-62
    usb 9-1 : new full speed USB device using ohci_hcd and address 3
    usb 9-1 : device descriptor read/64, error-62
    usb 9-1 : device descriptor read/64, error-62
    usb 9-1 : new full speed USB device using ohci_hcd and address 4
    usb 9-1: device not accepting address 4, error -62
    usb 9-1 : new full speed USB device using ohci_hcd and address 5
    usb 9-1: device not accepting address 5, error -62
    hub 9-0:1.0: unable to enumerate USB device on port 1
    scsi 6:0:0:0: CDROM        SONY        DVDRW DRU-510A 1.0d PQ: 0 ANSI: 0
    scsi 6:0:0:0: Attached scsi generic sg3 type 5
    sr0: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
    Uniform CD-ROM driver Revision: 3.20
    ERROR: boot device didn't show up after 30 seconds...
        Falling back to interactive prompt
        You can try to fix the problem manually, log out when you are finished
    /bin/sh: can't access tty; job control turned off
    If you need any other info, I can grab it of course.
    Last edited by crusniknano (2010-07-12 19:49:13)

    K, got it running. was having errors with the USB hd, but just changed the name it booted from to the name of the drive. thanks!

  • Problems with xfi and new logitech z5300 speak

    Hello,
    I just upgraded my speakers to Logitech z5300e's from my old set of Creative 5.'s. I am using an XFI soundcard that I have had no problems with in the past; it worked flawlessly with my old Creative 70 watt 5. speakers.
    The new speakers do not get sound from the center channel in entertainment mode. Using the speaker test in the creative console, the center channel output comes from the right front speaker--and the right front sound comes from the right rear. Every speaker's output is off by one position. This DOES NOT happen in game mode-the speakers function normally. It only happens in entertainment mode.
    I have tried uninstalling and reinstalling the drivers and console/mode switcher to no avail. Logitech tech support tells me that this is a Creative software issue since the speakers work correctly in game mode, but not entertainment mode. Actually, this is my second set of 5300's, I returned the first as defecti've because of the same problem.
    Can anyone give me any ideas or help?
    The problem goes away if I hook up the old speakers and reinstall the drivers.
    Thanks,
    Jim

    It seems that in Vista bad things may happen if you ever choose a
    program to open downloaded EXE files.
    This may help with the EXE issue:
    http://www.winhelponline.com/articles/165/1/Restore-the-exe-file-association-in-Windows-Vi sta-after-incorrectly-associating-it-with-another-application.html
    Aandi Inston

  • Problem with saving a new document

    hey i just wrote a new document and when i try to save it, it says "the file 'untitled' can not be opened because it has been deleted" which is really confusing me because i am not trying to save it as untitle nor am i trying to open anything.
    Thanks

    Welcome to Apple Discussions
    This is a problem with no specific cause. It usually is fixed by using Disk Utility to repair permissions and deleting the AppleWorks 6 preferences. See my user tip, AppleWorks has stopped working correctly, for more on the preferences.

  • Problem with RoboHelp 6 (new purchase)

    Hi all,
    Well I have just purchased the latest version of RoboHelp 6
    and I opened my previous project (from RoboHelp X3) in the new RH.
    I managed to have everything working and everything was good for
    about a week (including command-line compilation and batch
    generates). However now when I open my project RH stalls. Sometimes
    it manages to open the project but I can never edit it. I don't
    believe this issue to have anything to do with my machine's specs
    and I am running RH on the local machine (where I have admin
    rights) as opposed to the network. I am a bit confused by this
    behaviour. Maybe I need a patch or something but I am unsure as to
    where to find one.
    Thanks in advance for any advice on this issue,
    darkagn

    I was having a similar problem this morning with RoboHelp 6.
    My project would open, but would immediatly lock up if I tried to
    do anything. I removed the KB927891 Microsoft update that I had
    just installed, restarted, and everything works fine now. (I got
    this idea because it was the only change I had made to my system
    and because Microsoft updates have caused problems with RoboHelp in
    the past.) The notes on the Microsoft website indicate that this
    fix is part one of a two-part solution, so I'm going to wait until
    the second part is posted in June and try the update again. It
    could be a fluke that this worked, but thought I would pass the
    information along.
    Audrey

  • There is a problem with using the new Hotmail attachment buttons with firefox 3.6.8

    I use firefox 3.6.8 browser and was unable to use the new attach file buttons in the newest version of hotmail. .
    I sent a help request to microsoft and got back a 'generic' answer that the new hotmail works with all browers; ie, safari, chrome and firefox 3.0+.
    Well, that is not exactly true. Because I then troubleshot the problem by opening hotmail in ie vice firefox I was able to attach multiple files (pics/documents) with no problem.
    I then went back to firefox and still had the same problem.
    The mouse pointer just hovers over each icon where there should be a button and no clicking is there to be clicked....so, there is no way to attach.
    hopefully you'll get it worked out soon.
    regards, rob N

    Although possibly not related to your problem, I have to remind you that the version of Firefox you are using at the moment has been discontinued and is no longer supported. On top of this, it has known unpatched bugs and security problems. I urge you to update to the latest version of Firefox, for maximum security, stability, performance and usability. You can get it for free, as always, at [http://www.getfirefox.com getfirefox.com].
    As for your problem, hopefully this support article is what you need:
    http://support.mozilla.com/en-US/kb/Websites+look+wrong
    In any case, it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • Problems with AIM on new iMac G5

    Hi--Sorry if this is in the wrong place. I'm having an extremely frustrating problem with AIM, which I recently downloaded on my son's new iMac G5 (TIger 10.4.3). I've tried posting this question in the iChat forum, but since he doesn't use iChat and never has it open on his computer, I don't think it's an interference problem with iChat.
    AIM quits unexpectedly and repeatedly, often several times in just a few minutes. I've tried: throwing out all preferences, trashing and reinstalling AIM, and using AIM from a different user account on the machine. AIM worked FINE on my computer--an older G4 also running OS Tiger, so I can't imagine that this is an operating system conflict.
    A friend suggested that it might be a problem with the wireless network. The new G5 is connected wirelessly via Airport to my G4. Has anyone heard of AIM not running well on a wireless machine? Could something (an outside frequency perhaps?) be interfering with the wireless connection, causing AIM to quit?
    Needless to say, AOL's tech support is completely unhelpful. Says they don't provide tech support for AIM.
    If anyone can help, or knows someplace I can find AIM tech support, I would GREATLY appreciate it! THanks!

    The best advice I can offer is to dump the AOL AIM client altogether, and use a third-party instant messaging application that supports AIM.
    For example, Adium X is a full featured IM client that supports AIM as well as many other IM protocols.
    It's very stable on Tiger, and it's light years ahead of the official AIM client from AOL.
    Try it out!

  • Problems with email on new ipad not deleting?

    I have recently synced my new ipad 64gb 4g wifi from the back up from my ipad2. All was working fine & (no previous problems with my emails on ipad2) until I received an email a few days ago from apple which the original acknowledged changes to secutity questions. I have deleted the original from my desk top as some earlier forums have suggested but I am unable to delete or even open the email on the new ipad.When trying to action delete or open causes the mail app to instantly crash / close.So I am left with the mail icon app displaying 1 unopened message. I have again followed earlier recommendations namely completely deleting the mail account and starting from scratch only to be met with the same problem. When the mail app crashes all previous deleted messages re-appear in the inbox... Very frustrating any ideas would be gratefully received & any solutions would be terriffic!

    Have you tried closing the Mail app completely and then re-opening it ? From the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Maybe you are looking for

  • How to restore itunes library from a faulty time machine backup?

    Hello, I just bought a new macbook pro 15inch. I have a time machine backup but I wanted to start fresh so I didn't use the migration assistant to transfer my info. The only thing I want is my iTunes library with the playlists, ratings, artwork etc.

  • Live links in PDFs generated from Microsoft Word 2008?

    A couple of years ago, I was informed that my live links (bookmarks, indexmarks, etc.) in documents generated by Microsoft Word 2004 for the Macintosh did not become PDF live links in Acrobat Standard 7 because the Mac version from Microsoft Word 200

  • Help with Applescript, please?

    I am working on a script that will allow me to copy/move folders from my Mac to a Windows shared drive, without overwriting the entire existing folder and losing other files that may already exist in it. The commands work fine from a terminal, the pr

  • Error starting j2ee and cleanup

    I'm install the following at my Red Hat Linux 7.1 machine: JDK 1.2.2 -- "jdk-1_2_2_008-linux-i386[1].tar.gz" Tomcat 3.3a -- "jakarta-tomcat-3.3a.tar.gz" J2EE -- "j2sdkee-1_3_01-linux[1].tar.gz" Ant 1.3 -- "jakarta-ant-1.3-bin.tar.gz" And I had set th

  • Weblogic.security.provider.PrincipalValidatorImpl deprecated

    http://edocs.bea.com/wls/docs103/javadocs/weblogic/security/provider/PrincipalValidatorImpl.html says the class is deprecated though the documentation(http://edocs.bea.com/wls/docs103/dvspisec/atn.html#wp1089150) suggests its use. Anyone have any kno