in reply to Re^2: asynchronous socket comunication with perl tk
in thread asynchronous socket comunication with perl tk

"...
3. There will be one more button Start, clicking start button those two jobs should start running in the background.
...
7. After clicking 'start' button, the text on it should change to 'stop'. And then pressing 'stop' it should toggle back to 'start' and accordingly the job status should also change to 'Stopped' from 'Running'.
... need help on #3 to #7."

I provided code showing button creation, callbacks and changing widget text. I also provided documentation links.

What exactly do you need help on?

-- Ken

  • Comment on Re^3: asynchronous socket comunication with perl tk

Replies are listed 'Best First'.
Re^4: asynchronous socket comunication with perl tk
by ghosh123 (Monk) on Aug 23, 2013 at 06:59 UTC

    The help I need is on how to manage two job lines and change their status simultaneously. While running, the second job may finish before the first and accordingly its status should change to "Finished" whereas the first job status would still show as "Running".

    Just wanted to see how can these be programmed for 2 jobs for example. In practical I may need to manage 50 such jobs.
    Thanks.