Thread help
Thread thread =new Thread(new Runnable(){
publicvoid run(){
task();
}
});
thread.start();
hi, i have created a method namedtask() whereby when user insert the thumbdrive a powerpoint slide will play.
Using the code above however, i am unable to make the program to occur concurrently whereby each time when user insert thumdrive the powerpoint slide will play. Hope to get some help towards this threading problem. Thank you.

