03-31-2015
12:47 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-31-2015
12:47 PM
Hello, thanks for look at my post and offering suggestions, but it's my fault for not being specfic in the first post. I'm working in the VBA and would like to do something like this code I have for AutoCAD, but use it instead for Inventor:
"Private Sub AcadDocument_BeginClose()
Dim name As String
name = ThisDrawing.name
ThisDrawing.SaveAs "C:\otherDirectory\TEMPLATE\test\" & name
End Sub"
I'm saving it in the other directory s a backup and for conversion purporses later.
Also does the Inventor VBA have some similar to "Private Sub AcadDocument_EndSave(ByVal FileName As String)" and "Private Sub AcadDocument_BeginSave(ByVal FileName As String)" functions?