From: A_Classic_Man on
I have a Word form with a date field. I would like the date entered in
the field to show as the name of the form when the form is emailed as
an attachment and/or saved. How is this accomplished?

Thanks in advance

Ron
From: Stefan Blom on
You may want to ask in a programming newsgroup such as
microsoft.public.word.vba.general for assistance with this. At least the
second task should be possible with a macro.

--
Stefan Blom
Microsoft Word MVP


"A_Classic_Man" <rmerkel2(a)cox.net> wrote in message
news:cf01cda2-f844-402c-98d5-d9159296b621(a)59g2000hsb.googlegroups.com...
>I have a Word form with a date field. I would like the date entered in
> the field to show as the name of the form when the form is emailed as
> an attachment and/or saved. How is this accomplished?
>
> Thanks in advance
>
> Ron


From: Doug Robbins - Word MVP on
With ActiveDocument
.SaveAs .Formfields("dateformfield").Result
End With

See the article "How to send an email from Word using VBA" at:

http://www.word.mvps.org/FAQs/InterDev/SendMail.htm


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"A_Classic_Man" <rmerkel2(a)cox.net> wrote in message
news:cf01cda2-f844-402c-98d5-d9159296b621(a)59g2000hsb.googlegroups.com...
>I have a Word form with a date field. I would like the date entered in
> the field to show as the name of the form when the form is emailed as
> an attachment and/or saved. How is this accomplished?
>
> Thanks in advance
>
> Ron