Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsFormsForms ProgrammingQueriesModules / DAO / VBAReports / PrintingMacrosDatabase DesignSecurityConversionImporting / LinkingSQL Server / ADPMultiuser / NetworkingReplicationSetup / ConfigurationDeveloper ToolkitsActiveX ControlsNew UsersGeneral 1General 2
Access DirectoryToolsTutorialsUser Groups
Related Topics
SQL ServerOther DB ProductsMS OfficeMore Topics ...

MS Access Forum / Forms / May 2008

Tip: Looking for answers? Try searching our database.

How to make object in Access Form blink or flash?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
lisasue - 09 May 2008 16:56 GMT
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.
Jeff Boyce - 09 May 2008 17:17 GMT
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

> 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.
bb67dart@gmail.com - 09 May 2008 17:37 GMT
> 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.
fredg - 09 May 2008 18:14 GMT
> 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
Signature

Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.