lizziegirl
New Member
- Joined
- Apr 3, 2006
- Messages
- 31
Hi all,
I have searched high and low for an answer here - I usually trust the Office Experts site to get me through with regards to Word but it seems to be "under maintenance" now for a long time.
My circumstance is that I have created a template in 2003. I will have users on both 2007 and 2003 using the template.
I have managed to work out some code to force the name and path when the user goes to save.
However I would like some code to give my 2007 users no choice but for the document to be saved as a doc rather than a docx.
So far I have the below (which I want to duplicate for FileSave as well).
Is there anything that can be added here so the default type is a 97-2003 document?
Thanks in advance,
LizzieGirl
I have searched high and low for an answer here - I usually trust the Office Experts site to get me through with regards to Word but it seems to be "under maintenance" now for a long time.
My circumstance is that I have created a template in 2003. I will have users on both 2007 and 2003 using the template.
I have managed to work out some code to force the name and path when the user goes to save.
However I would like some code to give my 2007 users no choice but for the document to be saved as a doc rather than a docx.
So far I have the below (which I want to duplicate for FileSave as well).
Code:
'Dictate File Name in Dialog Box
Sub FileSaveAs()
With Dialogs(wdDialogFileSaveAs)
.Name = "H:\Quality\CORPORATE DEPARTMENTS\" & ActiveDocument.Tables(3).Cell(1, 1).Range
.Show
End With
End Sub
Is there anything that can be added here so the default type is a 97-2003 document?
Thanks in advance,
LizzieGirl