Listing of Properties&Methods (Access2003)

M

Morris.C

When in the VBA Editor, when I right-click and select
'List Properties/Methods' the list only appears for a few seconds, then
disappears!!!
This also happens when I type a '.' after a control name.
eg. Me!Text01.<Properties/Methods drop-down list appears>

What the hell is causing this?!?!?

(I've only recently been upgraded to Access2003. Access97 didn't do this.)
 
K

Ken Snell [MVP]

Do you have a timer event running in the database when you're editing the
code? That will cause the behavior that you're observing. Turn off the timer
while you're working in the VBE.
 
M

Morris.C

Do you have a timer event running in the database when you're editing
the code? That will cause the behavior that you're observing. Turn off
the timer while you're working in the VBE.

You Sir, are a f%$#ing genius!!
The timer was on another form I had open.
Thanks.
 
R

Robert_L_Ross

All hail the "Smartest Man Alive"

Ken Snell said:
Do you have a timer event running in the database when you're editing the
code? That will cause the behavior that you're observing. Turn off the timer
while you're working in the VBE.
 
Top