Hi, here is my problem. I'va made an application which reads a big amount of .txt files. This task takes a few minutes. The problem is that until this task is accomplished the application tottaly "freezes". Is there a way to avoid it?
One possible solution is, to use a seperate thread that will take care of reading a file and do necessary tasks. The application is freezing because the same thread is used to control the GUI (or APP )and reads a big file.