VBA Editor Window Bug "spacebar will immediately backspace"

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.
 
D

david epsom dot com dot au

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top