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 Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Can you create a text effect that is activated on a date in word?



 
 
Thread Tools Display Modes
  #1  
Old April 7th, 2006, 07:43 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default Can you create a text effect that is activated on a date in word?

I have created a action item list in ms word and when a task is overdue I
create a blinkiing background text effect on this task. Weekly the list is
updated and re-distributed so everyone can see there flashing overdue tasks.
Can this text effect be created automatically so I do not have to manually
creat it?
  #2  
Old April 7th, 2006, 08:14 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default Can you create a text effect that is activated on a date in word?

How about using the Format Painter? After formatting one, you can then just
use the Format Painter to wipe over the others that you wish to format in the
same way. Not quite automatic, but very quick!
--
Rae Drysdale


"rscherer13" wrote:

I have created a action item list in ms word and when a task is overdue I
create a blinkiing background text effect on this task. Weekly the list is
updated and re-distributed so everyone can see there flashing overdue tasks.
Can this text effect be created automatically so I do not have to manually
creat it?

  #3  
Old April 7th, 2006, 09:35 PM posted to microsoft.public.word.tables
external usenet poster
 
Posts: n/a
Default Can you create a text effect that is activated on a date in word?

Yes you could automate it with a macro. Say your tickler is a two
column table with the task in column 1 and the due date in the right
column. Something like this (you will probably want to put in error
handlers):

Sub Test()
Dim oDate As Date
Dim myDate As Date
Dim oTbl As Word.Table
oDate = Date
Dim i As Long
Set oTbl = ActiveDocument.Tables(1)
For i = 1 To oTbl.Rows.Count
myDate = Left(oTbl.Cell(i, 2).Range.Text, Len(oTbl.Cell(i,
2).Range.Text) - 2)
If myDate oDate Then
oTbl.Cell(i, 2).Range.Font.Animation = wdAnimationBlinkingBackground
End If
Next i
End Sub

 




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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Newbie Looking for Help Little Penny Using Forms 6 December 27th, 2005 08:33 PM
Word applies direct format on File open Uriel General Discussion 16 November 27th, 2005 07:22 PM
Add New Field to DB Karen Database Design 7 October 19th, 2005 08:03 PM
Query for 'confirmation' rogge Running & Setting Up Queries 8 April 19th, 2005 03:26 PM
Help with design Ronnie Database Design 6 March 12th, 2005 02:53 PM


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


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