A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How to make object in Access Form blink or flash?



 
 
Thread Tools Display Modes
  #1  
Old May 9th, 2008, 04:56 PM posted to microsoft.public.access.forms
lisasue
external usenet poster
 
Posts: 1
Default How to make object in Access Form blink or flash?

Can anyone tell me how to do this easily? I'm not good with code at all.
Does Access have a simple way to animate an object in our forms? I want it
to stand out so users actually read it.
  #2  
Old May 9th, 2008, 05:17 PM posted to microsoft.public.access.forms
Jeff Boyce
external usenet poster
 
Posts: 8,621
Default How to make object in Access Form blink or flash?

Folks who suffer from epilepsy can have an attack triggered by
flashing/blinking lights. Are you sure you want to risk that?

Another way to make something "stand out" is to change that object's
background color.

Regards

Jeff Boyce
Microsoft Office/Access MVP


"lisasue" wrote in message
...
Can anyone tell me how to do this easily? I'm not good with code at all.
Does Access have a simple way to animate an object in our forms? I want
it
to stand out so users actually read it.



  #3  
Old May 9th, 2008, 05:37 PM posted to microsoft.public.access.forms
[email protected]
external usenet poster
 
Posts: 10
Default How to make object in Access Form blink or flash?

On May 9, 8:56*am, lisasue wrote:
Can anyone tell me how to do this easily? *I'm not good with code at all.. *
Does Access have a simple way to animate an object in our forms? *I want it
to stand out so users actually read it. *


Here's some code I have been using, it's not much code and very easy
to implement. You go to the properties of the form and use the "on
timer" for event procedure (also set the interval just below where you
set the event, 500 works well for an interval). The code you can use
(in this case making label278 blink) is..

Private Sub Form_Timer()
Dim labelVis As Boolean

labelVis = Label278.Visible
Label278.Visible = Not (labelVis)

End Sub

If you need more specific help to put this code in, let me know.
  #4  
Old May 9th, 2008, 06:14 PM posted to microsoft.public.access.forms
fredg
external usenet poster
 
Posts: 4,386
Default How to make object in Access Form blink or flash?

On Fri, 9 May 2008 08:56:26 -0700, lisasue wrote:

Can anyone tell me how to do this easily? I'm not good with code at all.
Does Access have a simple way to animate an object in our forms? I want it
to stand out so users actually read it.


A little of this goes a long way.
If I were the user, I would put up with it for 3 seconds, close the
form and walk away. It's very distracting. Just because you can do
something doesn't mean you should.

Set the form's Time Interval to 500
Code the Form's Timer event:
Me.[ControlName].Visible = Not Me.[ControlName].Visible
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 08:06 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.