The only way I've found to consistantly get this to work is to undock all of the applicable controls from their container. This could be all controls on a form or all controls on a given panel (or some other container control).Then, dock the first control. For all subsequent controls that need to be redocked, use CTRL-X to temporarily delete them from Visual Studio and then CTRL-C to paste them back in again. Then, redock that control. You'll have to do this for each control. All of the control names and attributes will remain the same.However, you will need to recreate the event wireups. For most controls, this is as simple as double clicking the control or going to the events section of the property grid.After you have done this, close the designer for the form and open the .cs code file. If you have found that Visual Studio created new event place holders like this:oldprivate void mybutton_onclicknew private void mybutton_onclick_1Remove the new instance and try to compile your app. Visual Studioshould fail to compile and give you all the places you need to tweak in the designer.cs file.What is important to note is that if you attempt to fix the event place holders while the form is still up in design mode, Visual Studio will remove all of the newly created placeholders and you'll be back to square one for recreating your event placeholders.