how to change ForeColor On Mouse Move with builder

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

On the field named Authore (in a form), I have tried to following with
builder on the On Mouse Move property cryteria:
=[Author].ForeColor = 16777215
and
=[Author].ForeColor = RGB(255,255,255)
Although the database accepts both ways without showing any error messages,
nothing happens when I hover the mouse on the Author field. Can anyone tell
me what I am doing wrong? Please remember that this is the first time that I
have used any database programme, so be gentle.
 
in the MouseMove Property row, select [Event Procedure] from the drop-down
list. Click the Build button (with 3 dots) on the RHS. This will create
the stub so that you can write the code to do what you want, something like:

Me.Author.ForeColor = 16777215
 
Back
Top