View Single Post
 
Old 05-25-2012, 09:43 AM
RDKells RDKells is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: May 2012
Posts: 6
RDKells is on a distinguished road
Default

Hi, I needed to edit the document before editing, so using some common sense and info in here I ended up using this:

Code:
Sub FileSave()
'
Dim strNewPath As String
strNewPath = "" ' Set save location
ChangeFileOpenDirectory strNewPath
ActiveDocument.Save
End Sub

Which is EXACTLY what I wanted, thanks alot Charles.

Just now trying to make a macro to open the 10 documents on the click of a 'command button' in another document. Any ideas macrowise/creating a command button?

Thanks,
Ryan
Reply With Quote