In a JDialog, when user clicks a JButton i want to execute 2 GUI actions in the EDT :
- Showing another small JDialog with a busy icon in it to tell the user "Please wait while the wrong process ends".
- Inserting a big number of records in a JTable.
When i try to execute both actions the "please wait" dialog blocks the inserting process, as expected.
As you see both actions must be done in EDT ... so is there a solution for this ?