I am developing a VBA add-in for Excel that uses the RefEdit control.
One of my testers pointed out that he couldn't use keyboard shortcuts while selecting cells. And I found the solution to this problem here: http://support.microsoft.com/kb/291110
Set the magical value QFE_Richmond
to 1 in the Excel section of HKEY_CURRENT_USER
.
This solution works great.
My question is why?
What is the significance of the "QFE_Richmond" variable? Where did it come from? Why do you need this obscure flag to fix a simple glitch that has persisted at least through Excel 2010 and at least as far back as 2003? Does this flag do anything else?
And is it safe to automatically make this change for the users of my add-in, even though it globally affects their Excel settings?