IDE does not repsond after a successful build

After the "build success" text appear in status bar, the IDE could not respond to any mouse or keyboard input for a long time. What is it doing? How to eliminate this period?

Thanks!

[184 byte] By [LeiJiang] at [2008-2-5]
# 1
I am not sure whats leading to this problems so could you provide some more information?

1) Are you using Build (from build menu) or are you using Run in Debug Mode?
2) Is it a Win Forms or a Web Application?
3) Which version of IDE are you using?

Generally in VS 2005 Beta 2 - if you Run in Debug mode it takes couple of seconds after the build and before the Application is launched (in debug mode). I would presume that this delay is in getting the debugger ready and attaching it to the Application's Process. This might make you VS IDE look hunged?

Also if its a Win Forms app - remember it usually takes the Win Form app some time to start up the first time.

SaurabhNandu at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 2
I am using Whidbey Beta2 and only build the application(not debug application). It's a WinForm applications. The solution contains about 10 projects.
LeiJiang at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 3

Lei -
Try this solution from another thread since you're building a winforms app.

http://forums.microsoft.com/msdn/ShowPost.aspx?PostID=54840

Try going to Tools->Options->Windows Forms Designer->General
and setting AutoToolboxPopulate=false;

HTH,
Karen

KarenLiuMSFT at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# IDE...
# 4
Thanks! It works!
LeiJiang at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# IDE...