LibreOffice 3.4.5 Math edit window does not open

After installing LibreOffice 3.5.1, can not get the Math edit window to open,

even after downgrading to 3.4.5 and then 3.3

This is running on XP.

The solution is in this thread: http://user.services.openoffice.org/en/forum/viewtopic.php?f=12&t=47947

Use this macro:

Sub RemoveMathEquationWindowSettings
p = CreateUnoStruct(“com.sun.star.beans.PropertyValue”)
p.Name = “nodepath”
p.Value = “/org.openoffice.Office.Views/Windows”
cp = CreateUnoService(“com.sun.star.configuration.ConfigurationProvider”)
ca = cp.createInstanceWithArguments(_
“com.sun.star.configuration.ConfigurationUpdateAccess”, Array(p))
name = “30378”
If ca.hasByName(name) Then
ca.removeByName(name)
ca.commitChanges()
End If
End Sub