When I exit my application the javaw or java process (depends on how i start it) stays pending. I have found binging ( http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4497052 ) that there was some error with GUI applications and for XP OS. My OS is XP professional with sp 3. I have tried at my colegue PC who has windows7 and, indeed, there is no process pending on exit.
Do you have any suggestion how I can tackle this problem for XP? May I ask where I can find the entry point for my application, in case i want to try to debug?
Thanks
Nenad
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have customers reporting the same thing since a recent update of Java. My app under Win does this too. I have not investigated yet. Will try to make some time next week.
To force exit, you can brutally shutdown the JVM thus:
@java-code 'System.exit(0);'
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I exit my application the javaw or java process (depends on how i start it) stays pending. I have found binging ( http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4497052 ) that there was some error with GUI applications and for XP OS. My OS is XP professional with sp 3. I have tried at my colegue PC who has windows7 and, indeed, there is no process pending on exit.
Do you have any suggestion how I can tackle this problem for XP? May I ask where I can find the entry point for my application, in case i want to try to debug?
Thanks
Nenad
I have customers reporting the same thing since a recent update of Java. My app under Win does this too. I have not investigated yet. Will try to make some time next week.
To force exit, you can brutally shutdown the JVM thus:
@java-code 'System.exit(0);'