Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Excel cells that flash info

How do you cause a cell to flash when activated?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Excel cells that flash info

In article , ras711
@discussions.microsoft.com says...
How do you cause a cell to flash when activated?

http://www.tmehta.com/tmxl/dbfind_byid.asp?id=14

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 102
Default Excel cells that flash info

This should do what you want, sleep 1000 would be equal to one second. Run
the TestFlashRng sub to test it.



Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Sub FlashRng(Rng As Range)

Dim C As Byte

For C = 1 To 3

Sleep 300

Rng.Interior.ColorIndex = 3

Sleep 400

Rng.Interior.ColorIndex = xlNone

Next C

End Sub

Sub TestFlashRng()

FlashRng Range("A1")

End Sub

Regards, Rocky McKinley





"ras711" wrote in message
...

How do you cause a cell to flash when activated?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Move cell info and info in range of cells on new entry abc[_2_] Excel Discussion (Misc queries) 5 February 15th 10 08:21 PM
Make cells flash. aacstv Excel Discussion (Misc queries) 2 April 13th 06 06:02 AM
Make cells flash. aacstv Excel Worksheet Functions 1 April 13th 06 05:49 AM
How do you make cells flash? Bowhunter Excel Discussion (Misc queries) 2 November 20th 05 10:04 PM
Can you make cells in Excel flash or twinkle? 8buds4u Excel Worksheet Functions 1 March 29th 05 05:35 PM


All times are GMT +1. The time now is 03:25 PM.

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

About Us

"It's about Microsoft Excel"