-2

Microsoft Excel December 2014 updates have left my combobox disabled. Is there any way to get them working?

1 Answers1

0

You need to delete the file MSForms.exd from all the Temp subfolder in the user's profile (AppData\Local\Temp) to get the combobox working.

for excel delete this file :

C:\Users\\AppData\Local\Temp\Excel8.0\MSForms.exd

Script:

del %temp%\vbe\*.exd

del %temp%\excel8.0\*.exd

del %appdata%\microsoft\forms\*.exd

del %appdata%\microsoft\local\*.exd

del %appdata%\Roaming\microsoft\forms\*.exd

del %temp%\word8.0\*.exd

del %temp%\PPT11.0\*.exd
Rupesh
  • 643
  • 2
  • 9
  • 15