VBA Editor Acting Strange

  • Thread starter Thread starter bhipwell via AccessMonster.com
  • Start date Start date
B

bhipwell via AccessMonster.com

Hi,

When writing code, the vba editor is acting funny. For example if I type:

"If " and hit the spacebar, the program moves the cursor back to infront of
the letter "f"

When typing such things as Me.TextBox.Visible, when I type the "." after
TextBox, the options such as visible, setfocus, etc. pop up for mere seconds.


Any ideas? Is this a setting I may have changed?

B
 
Are you using the Timer event in your application? What you're seeing will
occur if there's an active timer.
 
I saw this happen once without an active timer. There was some code active
waiting for user response.
--
Dave Hargis, Microsoft Access MVP


Douglas J. Steele said:
Are you using the Timer event in your application? What you're seeing will
occur if there's an active timer.
 
That's what is was. I have an onTimer event which effectively makes an image
flash. When the form with the ontimer event is closed or in design view, no
problems.

Thanks! It was starting to drive me nuts.

B
 
Back
Top