Problems repainting a frame...
Hi there,
I have a GUI which as part of its operation calls a method that does some fairly intesive JDBC work (lots of adds and updates) which takes roughly 2 minutes...
During this time, if I click away from the UI, when I click back, it fails to re-draw (giving the user the impression it has crashed)
I tried passing a reference of the frame to the method performing the operations, and calling repaint after each operation to no avail...
I also tried using a progress bar (also passing a reference to the bar to the jdbc method, and again no luck)
Any idea what is happening and how i could fix it? Do i need to get threads happening for this?
Thanks a lot,
Nash.

