Export a copy of the form to text then restore from text.
in the immediate window
Application.SaveAsText acForm, "MyForm", "C:\Exports\MyForm.txt"
Rename the form or delete it.
Application.LoadFromText acForm, "MyForm", "C:\Exports\MyForm.txt"
Now try to add the new control.