Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have developed a windows applications, which got lot of image loading over the form... due to this images, forms are getting slower during load and unload...

Please suggest me a solution to make the form load and unload smoothly.

Advance in advance..!

share|improve this question

2 Answers

Just go to Run & type Command as 1) Temp 2) %temp% 3)Prefectch Delete all files which are available in that folder & delete then your system will start running smoothly.

share|improve this answer
Its good to understand the question and than answer . Please read the question again and try to improve your answer – Shail Feb 20 at 6:30

You should consider using Threads in your application and load all the images by a Thread. You can show the user something like a loading screen, after that you can catch if the Thread is ready with Thread.Join, so you can show the user all the loaded images. Easy and nice in use, only consider is that you need to work cross-thread.

Example: http://msdn.microsoft.com/en-us/library/aa645740(v=vs.71).aspx

EDIT:

You can also unload smooth with threads. Same way around.

share|improve this answer
Thanks Mobstaa.. But what i understood later is the loading is taking time cos form has to be re-sized to the screen size, which is happening during the loading time... – user2089934 Mar 25 at 12:32
@user2089934 Okay, no problem;) – Mobstaa Mar 25 at 12:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.