
Signature
Where are we going and why am I in this HAND BASKET??
plh was telling us:
plh nous racontait que :
> Office 2003:
> We have a system whereby sales engineers create spec. sheet by
[quoted text clipped - 16 lines]
> Thank You,
> plh
You can highjack the SaveFrameAs command with a sub that uses the exact name
as in this example:
Make sure you store the Sub in the project associated with the frame in the
VBA Editor.
'_______________________________________
Sub FileSaveFrameAs()
Dim strUserPAth
'Save user current directory
strUserPAth = CurDir
'Do the save
With Dialogs(wdDialogFileSaveAs)
.Name = "I:\Shared\Marketing\Smith\COPs\"
.Show
End With
'Reset the open/save directory
Application.ChangeFileOpenDirectory strUserPAth
End Sub
'_______________________________________
If you want to use a file name as well as a path name, change
.Name = "I:\Shared\Marketing\Smith\COPs\"
to
.Name = "I:\Shared\Marketing\Smith\COPs\MyDocument.doc"

Signature
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
jmarcilREMOVE@CAPSsympatico.caTHISTOO
Word MVP site: http://www.word.mvps.org
plh - 19 Feb 2007 17:28 GMT
>plh was telling us:
>plh nous racontait que :
[quoted text clipped - 52 lines]
>
> .Name = "I:\Shared\Marketing\Smith\COPs\MyDocument.doc"
Dear Jean-Guy,
Thank you, we will try it!
-plh

Signature
Where are we going and why am I in this HAND BASKET??