Text Box

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Hi,

I don't know if it is possible with Access or no but I
want to do is the following:

I want to add a text box or a label or whatever so most
important is to flash for example between Red and Blue,
to tell the user that the current Client didn't pay


Can I do it with Access

Thanks
 
Hi,

I don't know if it is possible with Access or no but I
want to do is the following:

I want to add a text box or a label or whatever so most
important is to flash for example between Red and Blue,
to tell the user that the current Client didn't pay

Can I do it with Access

Thanks
Add a label to the form.

Code the Form's Current event:
LabelName.BackColor = VbWhite 'or what ever color you want

Set the Form's Timer Interval to 1000.
Set the Form's Timer Event to:

If [SomeControl] = Some Criteria Then
If LabelName.BackColor = vbRed Then
[LabelName].BackColor = vbBlue
Else
[LabelName.BackColor = vbRed
End If
End If
 
Back
Top