blinking LABEL

G

Guest

I need som help making a label under a field blink off and on if the field is
left blank
here is the code i have to make the label blink but i can't make it work if
the required field is left blank. I the field name in SCPending_info
Thanks for the help
TB

Private Sub Form_Timer()
If Me.[SCPending_Info] = Is Null Then
Me.Label605.Visible = Not Me.Label605.Visible
End If
End Sub
 
G

Guest

Instead of
If Me.[SCPending_Info] = Is Null Then
try
If IsNull(Me.SCPending_Info) Then
 
G

Guest

First, "blinking" isn't a text attribute that's native to MS Access. You CAN
set it tovisible and invisible (as has been stated), but the DURATION of the
on/off cycle would be difficult or impossible to setup. Why not simply use a
MSGBOX to alert the user if a field is left blank?
 

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