Conditional Formatting requiring Clicking twice to change records

  • Thread starter Linq Adams via AccessMonster.com
  • Start date
L

Linq Adams via AccessMonster.com

Was writing a little routine for someone who needed, with a datasheet or
continuous form, to have FieldTwo's back color change when FieldOne has focus.
I added a boolean field, FFlag, and set it with the following code:

Private Sub FieldOne_GotFocus()
Me.FFlag = -1
End Sub

Private Sub FieldOne_LostFocus()
Me.FFlag = 0
End Sub

and then used Conditional Formatting for FieldTwo

Expression Is [FieldOne] = -1

with the back color set as desired.

This works as expected with one exception. If you move to another control
within the current record, everything works correctly. But if you try to move
to a different record with the mouse, the formatting disappears from FieldTwo,
but the cursor stays on the FieldOne of the current record! In order to go to
another record you have to click on it a second time!

I've tried everything I can think of, including recreating the scenario with
a new db, made from scratch, in case it was some weird type of corruption,
with no luck.

If the Conditional Formatting is removed, the form works as it normally would!


Anyone with any ideas?

Running Access 2003/SP2 on Windows XP

Thanks!

Linq
 
L

Linq Adams via AccessMonster.com

Correction:

The Conditional Formatting is

Expression Is [FFlag] = -1
 

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