News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

The window Freezes!?

Started by shadow, June 29, 2005, 04:36:22 AM

Previous topic - Next topic

shadow

When I use CopyFile to copy large files (1Gb), the window of my program freezes while the file is being copied.  How can I prevent this?

hutch--

This is normal in a single thread application. To solve the problem do the copy in a seperate thread and have it advise the calling thread whn its finished.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

shadow

thanks!  heh thats what multiple threads are for!  hmm looks like i'm going to have to do a little more reading. :wink