Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 181
Default blinking/flashing objects

How can I make an object from the drawing toolbox bar to blink/flash?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default blinking/flashing objects

Use an ontime macro to change the color every second or half second.

See Chip Pearson's site for blinking text code.

http://www.cpearson.com/excel/BlinkingText.aspx

Adapt that code to your drawing object.


Gord Dibben MS Excel MVP



On Sat, 19 Sep 2009 18:58:01 -0700, Alberto Ast
wrote:

How can I make an object from the drawing toolbox bar to blink/flash?


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 181
Default blinking/flashing objects

Are you familiar with this code? it works but it is making conflict with
anotehr code I already have on This Worksheet View code

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
End Sub

Do you know how can I fix this conflict... Chip P routine has on same view
code as follows

Private Sub Workbook_Open()
StartBlink
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
StopBlink
End Sub

which cause conflict.



"Gord Dibben" wrote:

Use an ontime macro to change the color every second or half second.

See Chip Pearson's site for blinking text code.

http://www.cpearson.com/excel/BlinkingText.aspx

Adapt that code to your drawing object.


Gord Dibben MS Excel MVP



On Sat, 19 Sep 2009 18:58:01 -0700, Alberto Ast
wrote:

How can I make an object from the drawing toolbox bar to blink/flash?



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8,520
Default blinking/flashing objects

Hi Alberto

Try the below...

Private Sub Workbook_Open()
StartBlink
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
If Cancel = False then StopBlink
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

Are you familiar with this code? it works but it is making conflict with
anotehr code I already have on This Worksheet View code

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
End Sub

Do you know how can I fix this conflict... Chip P routine has on same view
code as follows

Private Sub Workbook_Open()
StartBlink
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
StopBlink
End Sub

which cause conflict.



"Gord Dibben" wrote:

Use an ontime macro to change the color every second or half second.

See Chip Pearson's site for blinking text code.

http://www.cpearson.com/excel/BlinkingText.aspx

Adapt that code to your drawing object.


Gord Dibben MS Excel MVP



On Sat, 19 Sep 2009 18:58:01 -0700, Alberto Ast
wrote:

How can I make an object from the drawing toolbox bar to blink/flash?



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 181
Default blinking/flashing objects

Thanks... I think I am complicating my file too much for now... I will leave
it without the blink... I rather validate the closing.... I might try
later... your subtutine did not work for me now... I will prepare it later to
put it on the web to see if you can help me further.

Thanks

"Jacob Skaria" wrote:

Hi Alberto

Try the below...

Private Sub Workbook_Open()
StartBlink
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
If Cancel = False then StopBlink
End Sub

If this post helps click Yes
---------------
Jacob Skaria


"Alberto Ast" wrote:

Are you familiar with this code? it works but it is making conflict with
anotehr code I already have on This Worksheet View code

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Cancel = Not blnClose
End Sub

Do you know how can I fix this conflict... Chip P routine has on same view
code as follows

Private Sub Workbook_Open()
StartBlink
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
StopBlink
End Sub

which cause conflict.



"Gord Dibben" wrote:

Use an ontime macro to change the color every second or half second.

See Chip Pearson's site for blinking text code.

http://www.cpearson.com/excel/BlinkingText.aspx

Adapt that code to your drawing object.


Gord Dibben MS Excel MVP



On Sat, 19 Sep 2009 18:58:01 -0700, Alberto Ast
wrote:

How can I make an object from the drawing toolbox bar to blink/flash?




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
Hi Blinking/Flashing Text in cell based upon date value EXCEL.SYED Excel Discussion (Misc queries) 1 February 17th 10 10:59 AM
Flashing or Blinking Cell MUEEN SEHDI[_2_] Excel Worksheet Functions 1 October 29th 09 11:36 AM
URGENT HELP ON BLINKING/FLASHING CELL EXCEL USER Excel Programming 5 October 23rd 06 06:32 PM
Blinking/Flashing Cells maacmaac Excel Discussion (Misc queries) 2 December 7th 05 03:46 PM
How do I insert blinking or flashing numbers or text in Excel? Sanjay Mathur Excel Worksheet Functions 2 February 11th 05 07:20 PM


All times are GMT +1. The time now is 04:10 AM.

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

About Us

"It's about Microsoft Excel"