Re: GUI app freezing completely



Well code that put for example in the actionPerformed method of
ActionListener will not be executed in a separate thread from the GUI,
so if you have a huge process going in that method it will
block(disable) your GUI until that method returns. Try using a
separate thread.
.