Hi,
I'm developing a java GUI for PLC monitoring ...
I using "MonitorThread" for monitor the status of PLC connected.
MonitorThread mt = new MonitorThread();
mt.start();
But, May i know how to stop/close the thread as well ?
I tried to use "mt.stop();" , but can't ...
Pls advise. Thanks.