VBA Editor typing problem

  • Thread starter Thread starter exebat
  • Start date Start date
E

exebat

Hi all.

I have some strange problem in my DB.

When I type code in my VBA editor it starts to add " symbols
automatically. It also adds spaces and I can not see value list for
any control as it only lasts for 1 second and typed text becomes red.

What might be the problem ?
 
Hi all.

I have some strange problem in my DB.

When I type code in my VBA editor it starts to add " symbols
automatically. It also adds spaces and I can not see value list for
any control as it only lasts for 1 second and typed text becomes red.

What might be the problem ?

I've seen things like this happen when a Timer is running on some form in the
database. Close any form with a Timer in it, or set the TimerInterval property
to 0 while you're editing code, and see if this helps.
 
I've seen things like this happen when a Timer is running on some form inthe
database. Close any form with a Timer in it, or set the TimerInterval property
to 0 while you're editing code, and see if this helps.

That was the problem.

Thanks a lot John.
 
Back
Top