Search:

Type: Posts; User: joshiparag123456

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    1,171

    Re: Swing & Threading ... Systen hangs

    that code was an example of how to handle threads in Swing such that ur GUI doesn't become unresponsive.
    Do not create swing gui in main thread.
    Do not make a function call do a lot of work on...
  2. Replies
    4
    Views
    1,171

    Re: Swing & Threading ... Systen hangs

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;

    /** Resolve the unresponsive UI problem by running the compute-intensive task
    in this own thread, which yields control to...
Results 1 to 2 of 2