I understand that the form has to change in order for this event to be available.
I have a hidden checkbox named wasRead, with a Control Source of (appropriately!) wasRead. It's a simple boolean field to see if this line item was read.
in the message_dblClick event, I have the following code:
The original value of wasRead is 0 (seen with breakpoint)... so I know the value is changing. Also, me.dirty = true, because I get into the If statement.
What gives?
Scott
I have a hidden checkbox named wasRead, with a Control Source of (appropriately!) wasRead. It's a simple boolean field to see if this line item was read.
in the message_dblClick event, I have the following code:
Code:
Me.wasRead.Value = 1
If Me.Dirty Then
Me.SetFocus
DoCmd.RunCommand acCmdSaveRecord
End If
DoCmd.OpenForm "frmChat", acNormal, , , , acDialog, lineID
The original value of wasRead is 0 (seen with breakpoint)... so I know the value is changing. Also, me.dirty = true, because I get into the If statement.
What gives?
Scott