Message 1 of 3
Looking for a FileSaveAs object primer.

Not applicable
07-14-2011
09:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am using Inventor Apprentice 2011 and VB.Net 2010.
I am trying to use the FileSaveAs object in a loop that will save copies of a number of files
--- Pseudo Code ---
Create oFileSaveAs Object.
For n = 0 to 100
oFileSaveAs.AddFileToSave(oDoc(n), NewPath \ NewName(n))
Next
oFileSaveAs.ExecuteSaveCopyAs()
--- End Pseudo Code ---
Only one document is copied.
I was under the impression that more that one document could be added and all documents added would be copied.
Is there better documentation on this process?