I have an application that, upon first launch and every 7 days, performs an update downloading some files from the Internet.
This update may take up to 5 minutes, depending on how many files are required to download.
What I'm going to do is run the update in a separate thread so that the rest of the GUI is used during update processing.
This seems like a pretty viable option for my application, but I would also like to show a message in the main GUI, perhaps in the status bar, which tells the user that the update is being processed and leaves when it is completed.
I was looking for ways to do this, but nothing looks like what I'm looking for. Does anyone know if this is possible and how to do it?
source
share