Access 2007, doubleclick

G

Guest

I'm finding a few surprises when I try to run my Access 2000 formatted
database under Access 2007. When I doubleclick on a control it, first, fires
the singleclick event and then the doubleclick which, of course, causes
everything to crash. Is this a bug, or am I in for a major re-write? If so,
how can I stop the singleclick event from firing? Also, I can't access values
on a control unless the control has focus which also make a lot of my code
crash. Any help with this is appreciated.
 
R

RoyVidar

Dave said:
I'm finding a few surprises when I try to run my Access 2000
formatted database under Access 2007. When I doubleclick on a
control it, first, fires the singleclick event and then the
doubleclick which, of course, causes everything to crash. Is this a
bug, or am I in for a major re-write? If so, how can I stop the
singleclick event from firing?

I thought that was the standard behaviour on all versions? At least,
that is how my 2000 and 2003 behaves.
Also, I can't access values on a
control unless the control has focus which also make a lot of my code
crash. Any help with this is appreciated.

Are you by any chance referring to the .Text property? If so, it needs
focus, else use

Me!txtMyControl.Value

or

Me!txtMyControl
 

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