#1   Report Post  
Posted to microsoft.public.word.docmanagement
Ralph Ralph is offline
external usenet poster
 
Posts: 16
Default Autoinsert date

I am trying to do on one page multiple notes on diferent dates and would
like to create a template were every time or date i want to wirte a note, the
date is inserted automatically. In other words, let say i write a note of 3-4
lines today, were it appears today date, then tomorrow i need to write
another note on the same page, then i would like the new date to be inserted
automaticaly and then in two days i write a new note then the new date is
inserted. Any hints???
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Charles Kenyon Charles Kenyon is offline
external usenet poster
 
Posts: 276
Default Autoinsert date

Notepad has this feature; Word does not. In NotePad, make the first line of
the file:
..log

The simplest way to do it is to write a macro to insert the date and attach
that to a keyboard shortcut.

Here is a sample macro:

Sub MyDateInsert()
'
' Macro written 7/21/2006 by Charles Kyle Kenyon
'
Selection.TypeText Text:="Notes made "
Selection.InsertDateTime DateTimeFormat:="d-MMM-yy",
InsertAsField:=False, _
DateLanguage:=wdEnglishUS, CalendarType:=wdCalendarWestern, _
InsertAsFullWidth:=False
Selection.TypeParagraph
End Sub

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
I am trying to do on one page multiple notes on diferent dates and would
like to create a template were every time or date i want to wirte a note,
the
date is inserted automatically. In other words, let say i write a note of
3-4
lines today, were it appears today date, then tomorrow i need to write
another note on the same page, then i would like the new date to be
inserted
automaticaly and then in two days i write a new note then the new date is
inserted. Any hints???



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Ralph Ralph is offline
external usenet poster
 
Posts: 16
Default Autoinsert date

Ephox Edit live for w2indows 3.0?

Thanks

Ralph



Can you expalin this in a more simple way to understand. Also, can you do
this using

"Charles Kenyon" wrote:

Notepad has this feature; Word does not. In NotePad, make the first line of
the file:
..log

The simplest way to do it is to write a macro to insert the date and attach
that to a keyboard shortcut.

Here is a sample macro:

Sub MyDateInsert()
'
' Macro written 7/21/2006 by Charles Kyle Kenyon
'
Selection.TypeText Text:="Notes made "
Selection.InsertDateTime DateTimeFormat:="d-MMM-yy",
InsertAsField:=False, _
DateLanguage:=wdEnglishUS, CalendarType:=wdCalendarWestern, _
InsertAsFullWidth:=False
Selection.TypeParagraph
End Sub

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
I am trying to do on one page multiple notes on diferent dates and would
like to create a template were every time or date i want to wirte a note,
the
date is inserted automatically. In other words, let say i write a note of
3-4
lines today, were it appears today date, then tomorrow i need to write
another note on the same page, then i would like the new date to be
inserted
automaticaly and then in two days i write a new note then the new date is
inserted. Any hints???




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Charles Kenyon Charles Kenyon is offline
external usenet poster
 
Posts: 276
Default Autoinsert date

No, I can't explain it in a way that is easier to understand. Here is a try,
though.

Word does not have this feature. You can create a date stamp in Word if you
want. This is called writing a macro. I wrote one for you. You need to
implement it.

You might find the following link helpful.
http://word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
Ephox Edit live for w2indows 3.0?

Thanks

Ralph



Can you expalin this in a more simple way to understand. Also, can you do
this using

"Charles Kenyon" wrote:

Notepad has this feature; Word does not. In NotePad, make the first line
of
the file:
..log

The simplest way to do it is to write a macro to insert the date and
attach
that to a keyboard shortcut.

Here is a sample macro:

Sub MyDateInsert()
'
' Macro written 7/21/2006 by Charles Kyle Kenyon
'
Selection.TypeText Text:="Notes made "
Selection.InsertDateTime DateTimeFormat:="d-MMM-yy",
InsertAsField:=False, _
DateLanguage:=wdEnglishUS, CalendarType:=wdCalendarWestern, _
InsertAsFullWidth:=False
Selection.TypeParagraph
End Sub

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
I am trying to do on one page multiple notes on diferent dates and
would
like to create a template were every time or date i want to wirte a
note,
the
date is inserted automatically. In other words, let say i write a note
of
3-4
lines today, were it appears today date, then tomorrow i need to write
another note on the same page, then i would like the new date to be
inserted
automaticaly and then in two days i write a new note then the new date
is
inserted. Any hints???






  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Charles Kenyon Charles Kenyon is offline
external usenet poster
 
Posts: 276
Default Autoinsert date

Here is another link that may help.
http://gregmaxey.mvps.org/Date_Time_Stamp.htm
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Charles Kenyon" wrote in message
...
No, I can't explain it in a way that is easier to understand. Here is a
try, though.

Word does not have this feature. You can create a date stamp in Word if
you want. This is called writing a macro. I wrote one for you. You need to
implement it.

You might find the following link helpful.
http://word.mvps.org/FAQs/MacrosVBA/CreateAMacro.htm

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
Ephox Edit live for w2indows 3.0?

Thanks

Ralph



Can you expalin this in a more simple way to understand. Also, can you do
this using

"Charles Kenyon" wrote:

Notepad has this feature; Word does not. In NotePad, make the first line
of
the file:
..log

The simplest way to do it is to write a macro to insert the date and
attach
that to a keyboard shortcut.

Here is a sample macro:

Sub MyDateInsert()
'
' Macro written 7/21/2006 by Charles Kyle Kenyon
'
Selection.TypeText Text:="Notes made "
Selection.InsertDateTime DateTimeFormat:="d-MMM-yy",
InsertAsField:=False, _
DateLanguage:=wdEnglishUS, CalendarType:=wdCalendarWestern, _
InsertAsFullWidth:=False
Selection.TypeParagraph
End Sub

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://word.mvps.org/FAQs/ which is awesome!

My criminal defense site: http://addbalance.com
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.


"Ralph" wrote in message
...
I am trying to do on one page multiple notes on diferent dates and
would
like to create a template were every time or date i want to wirte a
note,
the
date is inserted automatically. In other words, let say i write a note
of
3-4
lines today, were it appears today date, then tomorrow i need to write
another note on the same page, then i would like the new date to be
inserted
automaticaly and then in two days i write a new note then the new date
is
inserted. Any hints???







Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Concerning Current Date Changes On Past Documents smartasien Microsoft Word Help 2 May 2nd 06 03:31 PM
The Web Archive Converter puts todays date on MHT copies of old f zzz Microsoft Word Help 1 December 12th 05 12:56 PM
how do i set a reacuring date on a document? welker_daniel New Users 4 October 29th 05 08:38 AM
Document Creation Date Thomas M Microsoft Word Help 3 October 29th 05 04:02 AM
Setting default headers and fonts in a template officequestions Microsoft Word Help 5 August 31st 05 01:54 PM


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

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"