Salve,
su un jComboBox ho definito in seguente evento:
codice:
    private void jComboBox3ItemStateChanged(java.awt.event.ItemEvent evt) {                                            

            System.out.println("Cambiato...");
 
    }
e se viene selezionato un nuovo item, alla chiusura dell'applicazione mi viene restituito il seguente messaggio nella finestra di output del mio IDE:

codice:
#
# An unexpected error has been detected by HotSpot Virtual Machine:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c921669, pid=3772, tid=224
#
# Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b03 mixed mode, sharing)
# Problematic frame:
# C  [ntdll.dll+0x11669]
#
# An error report file with more information is saved as hs_err_pid3772.log
#
# If you would like to submit a bug report, please visit:
#   http://java.sun.com/webapps/bugreport/crash.jsp
#
Java Result: 1
BUILD SUCCESSFUL
Qui è possibile trovare il contenuto del file hs_err_pid3772.log

Come mai succede questo e come posso risolvere?

Grazie