A
Andrew Gabb
I'm tearing my hair out. I've implemented a 'pick list' so that the
users can pick an item from a list, derived from a query. The users
want to use the standard Find and Replace dialog (Ctrl-F) on the
pick form.
Trouble is that they then can't use the mouse on the Find dialog
(but the keyboard works OK).
For reasons discussed in another article, this is a modal form (not
called using acDialog), and the code waits until the form closes
using a DoEvents loop.
While Form_is_loaded
DoEvents
Wend
If I remove this loop (ie don't wait for the form to close) the
mouse works fine.
Any ideas?
Alternately, how else can I wait rather than a DoEvents loop - I
really have to wait in some way - the selection of the item is in
the middle of a rather complex process.
I'm using Access XP.
Andrew
users can pick an item from a list, derived from a query. The users
want to use the standard Find and Replace dialog (Ctrl-F) on the
pick form.
Trouble is that they then can't use the mouse on the Find dialog
(but the keyboard works OK).
For reasons discussed in another article, this is a modal form (not
called using acDialog), and the code waits until the form closes
using a DoEvents loop.
While Form_is_loaded
DoEvents
Wend
If I remove this loop (ie don't wait for the form to close) the
mouse works fine.
Any ideas?
Alternately, how else can I wait rather than a DoEvents loop - I
really have to wait in some way - the selection of the item is in
the middle of a rather complex process.
I'm using Access XP.
Andrew