change color on blink

M

mccoy

ive done the blinking label but what i want is to do is interchange color
while on blink i cant do the right code for this can anyone teach me how

tnx in advance
 
N

NthDegree via AccessMonster.com

McCoy,

Paste the code you are using and I'll show you how.
 
N

NthDegree via AccessMonster.com

Ok, now how are you triggering it? after update?, timer?, on exit? It will
affect the code.
Me.check.Visible = Not Me.check.Visible
Me.check.ForeColor = vbYellow = vbRed
[quoted text clipped - 4 lines]
 
M

mccoy

on timer

thnx

NthDegree via AccessMonster.com said:
Ok, now how are you triggering it? after update?, timer?, on exit? It will
affect the code.
Me.check.Visible = Not Me.check.Visible
Me.check.ForeColor = vbYellow = vbRed
[quoted text clipped - 4 lines]
tnx in advance

--
Never let it be said that I was totally comitted to sanity. It is the dark
places of my mind that fascinate me.

NthDegree
 
N

NthDegree via AccessMonster.com

Try this:

Me.Text5.Visible = Not Me.Text5.Visible
If Me.Text5.Visible = True Then
If Me.Text5.ForeColor = vbRed Then
Me.Text5.ForeColor = vbYellow
Else
Me.Text5.ForeColor = vbRed
End If
End If
on timer

thnx
Ok, now how are you triggering it? after update?, timer?, on exit? It will
affect the code.
[quoted text clipped - 7 lines]
 

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