blinking LABEL

  • Thread starter Thread starter Guest
  • Start date Start date
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
 
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?
 
Back
Top