Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
Gordon[_4_] Gordon[_4_] is offline
external usenet poster
 
Posts: 239
Default "Send As" add-in for Word?

Open Office has a really good feature in that you can do a "Send As" a
Microsoft Word 97-2003 document with no reference to the format of the
document that is being edited.
This would be a really good feature for Office 2007 and upwards because it
doesn't affect the base document format at all.
This means that (for example) I can open a docx document and do a "Send As"
..doc document without having to do a "Save As" first.

Does anyone know of an add-in that could replicate such a feature?

  #2   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default "Send As" add-in for Word?

Word 2007 already includes this ability. Set the default save format as Word
97-2003 document format and Use Send E-Mail.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org




"Gordon" wrote in message
...
Open Office has a really good feature in that you can do a "Send As" a
Microsoft Word 97-2003 document with no reference to the format of the
document that is being edited.
This would be a really good feature for Office 2007 and upwards because it
doesn't affect the base document format at all.
This means that (for example) I can open a docx document and do a "Send
As" .doc document without having to do a "Save As" first.

Does anyone know of an add-in that could replicate such a feature?



  #3   Report Post  
Posted to microsoft.public.word.newusers
Gordon[_4_] Gordon[_4_] is offline
external usenet poster
 
Posts: 239
Default "Send As" add-in for Word?


"Graham Mayor" wrote in message
...
Word 2007 already includes this ability. Set the default save format as
Word 97-2003 document format and Use Send E-Mail.


That's not /quite/ what I meant. What I mean is, I like to keep all my
documents as .docx documents. There are people I know who cannot install the
Compatibility pack and use 2003. (Corporate users). This means that I have
to do a "Save As" into .doc format before I send a document to them. What
Open Office has is a function that does "Send As .doc format" - no matter
whether the original is .odt or .docx. The original document is unaltered,
there are no duplicate documents in different formats, and I can use the
document format I want, not what is dictated by other users.

Hope that's a bit clearer!

  #4   Report Post  
Posted to microsoft.public.word.newusers
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default "Send As" add-in for Word?

The document will have to be saved in order to attach it. Whether you save
it manually or by using a built-in function as in OpenOffice or
transparently by using a macro to emulate that is really immaterial. The
following will send docx format documents as doc format attachments.

Sub Send_As_Mail_Attachment()
' send the document as an attachment _
in an Outlook Email message
Dim bStarted As Boolean
Dim oOutlookApp As Outlook.Application
Dim oItem As Outlook.MailItem
Dim sDocName As String, sFname As String
On Error Resume Next
'Prompt the user to save the document
ActiveDocument.Save
sFname = ActiveDocument.FullName
sDocName = Left(sFname, InStr(1, sFname, ".doc"))
'Save as DOC format
ActiveDocument.SaveAs sDocName & "doc", wdFormatDocument97
'Get Outlook if it's running
Set oOutlookApp = GetObject(, "Outlook.Application")
'Outlook wasn't running, start it from code
If Err 0 Then
Set oOutlookApp = CreateObject("Outlook.Application")
bStarted = True
End If
'Create a new mailitem
Set oItem = oOutlookApp.CreateItem(olMailItem)
With oItem
.Attachments.Add Source:=ActiveDocument.FullName, _
Type:=olByValue, DisplayName:="Document as attachment"
.Display
End With
'Clean up
'Close the doc format document (you could delete it too if required)
ActiveDocument.Close
'Re-open the docx format document
Documents.Open sFname
Set oItem = Nothing
Set oOutlookApp = Nothing
End Sub


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



"Gordon" wrote in message
...

"Graham Mayor" wrote in message
...
Word 2007 already includes this ability. Set the default save format as
Word 97-2003 document format and Use Send E-Mail.


That's not /quite/ what I meant. What I mean is, I like to keep all my
documents as .docx documents. There are people I know who cannot install
the Compatibility pack and use 2003. (Corporate users). This means that I
have to do a "Save As" into .doc format before I send a document to them.
What Open Office has is a function that does "Send As .doc format" - no
matter whether the original is .odt or .docx. The original document is
unaltered, there are no duplicate documents in different formats, and I
can use the document format I want, not what is dictated by other users.

Hope that's a bit clearer!



  #5   Report Post  
Posted to microsoft.public.word.newusers
Yves Dhondt Yves Dhondt is offline
external usenet poster
 
Posts: 767
Default "Send As" add-in for Word?

That is actually a really bad idea. Saving a document in a different format
tends to slightly alter the layout of the document. After all, each format
has its own set of unique features not supported by other formats. Blindly
saving the document and sending it without verifying the layout might leave
you very embarrassed one day.

Yves

"Gordon" wrote in message
...
Open Office has a really good feature in that you can do a "Send As" a
Microsoft Word 97-2003 document with no reference to the format of the
document that is being edited.
This would be a really good feature for Office 2007 and upwards because it
doesn't affect the base document format at all.
This means that (for example) I can open a docx document and do a "Send
As" .doc document without having to do a "Save As" first.

Does anyone know of an add-in that could replicate such a feature?


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
button "send"; Interface not registered" antonio Microsoft Word Help 1 February 27th 08 08:07 AM
What key strokes in Outlook send a message without hitting "Send"? Antonia James Microsoft Word Help 1 March 28th 07 04:00 AM
What key strokes in Outlook send a message without hitting "Send"? twinkle17 Microsoft Word Help 0 March 28th 07 12:01 AM
What key strokes in Outlook send a message without hitting "Send"? Simon Jones [MSDL] Microsoft Word Help 0 March 27th 07 11:18 PM
Poor picture quality when using "Send to Mail Recipient" in word PBD Microsoft Word Help 0 September 25th 06 05:12 AM


All times are GMT +1. The time now is 12:05 AM.

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"