Save Method Example

The following example saves all open documents in the WorkSpace, prompting the user for each Document.

Dim iStatus As Long

iStatus = Application.Documents.Save(True)

The following example opens the DocumentTestPicture and saves it as TestPicture1 without prompting the user.

Dim iDoc As Object

Set iDoc = Application.Documents.open("C:\Program Files (x86)\Proficy\iFIX\pic\testpicture.grf")

iDoc.Save "TestPicture1.grf", False