Hi,
I have a method which process the files(read/create many files) which I am calling like that..
Thread t = new Thread(new ThreadStart(ProcessFiles));
t.Start();
ProcessFiles() is the method which does all the file work.
Every think works fine but my win form keeps flickering which I don't want.
Is there any think I can do to avoid flickering.
Many Thanks,
I have a method which process the files(read/create many files) which I am calling like that..
Thread t = new Thread(new ThreadStart(ProcessFiles));
t.Start();
ProcessFiles() is the method which does all the file work.
Every think works fine but my win form keeps flickering which I don't want.
Is there any think I can do to avoid flickering.
Many Thanks,