0
How many files are you converting to thumbnails too? Are there too many files? You may want to put this process in a worker thread and have your UI display a status message after every file is converted. To test it, try one or two files to see if program is working fine.
Also, you may want to put a try..catch..finally block around your code and put Dispose method in finally to make sure bitmaps are being disposed. If there is an error in your code before Dispose, bitmaps may not being disposed.
Debug .. debug .. I always suggest debug line by line to see how long your code is taking and what it is doing.