VBA Editor Window Bug "spacebar will immediately backspace"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My visual basic editor is annoying me. Whenever I hit the spacebar in the
vba editor it immediately backspaces. I can no longer write code easily with
this bug in my editor. Any suggestions on how to fix this problem.
 
You probably have a form open, with a timer event. Each time the
timer event fires, your code looses focus, and the line is trimmed
back to the last non-whitespace character.

Close the form, or stop the timer.

(david)
 
Back
Top