Click here to Skip to main content
15,892,809 members

Comments by TrekkieTech (Top 2 by date)

TrekkieTech 22-Jul-13 7:19am View    
ThePhantomUpvoter is correct - you need to do the file upload process within a background thread so that it does not block your programs UI while the upload is taking place.

Clarification : your program does not 'hang' as such - it seems to because the main UI thread is busy performing the CSV upload tasks and therefore cannot respond to user input.

How are you uploading your CSV files? via FTP?

If you are using FTP then it is quite simple to use asynchronous FTP transfer so that the program UI thread is not blocked.
TrekkieTech 22-Jul-13 7:14am View    
Can you clarify the question, maybe with an example or a more in-depth description of your problem please?