I have banking gui application that I am currently working on and there seems to be a problem with the setvisible method for my jdialog. After the user has withdrawn a valid
You are displaying a modal dialog so the background code can't execute until the dialog is closed.
Add a System.out.println(...) statement after the setVisible and you will see it never executes.