LCform
Mechanical
- Jan 13, 2016
- 139
Hi All
I was trying to write a macro that I can save my drawing after every revision update as a pdf file, adding the rev(num) to the file name . After recording, I needed to know, how to grab that revision name that I update manually, to the file name I wanna save. Actually if possible, I wanted to do this without running a macro, but each time I would update the revision number, this could be done automatically. Is it possible ?
Any solution is appreciated
Sub main()
Set swApp = _
Application.SldWorks
Set Part = swApp.ActiveDoc
Part.ClearSelection2 True
longstatus = Part.SaveAs3("Z:\CAS1259F5\1259F5-P02-REV0.PDF", 0, 0)
End Sub
I was trying to write a macro that I can save my drawing after every revision update as a pdf file, adding the rev(num) to the file name . After recording, I needed to know, how to grab that revision name that I update manually, to the file name I wanna save. Actually if possible, I wanted to do this without running a macro, but each time I would update the revision number, this could be done automatically. Is it possible ?
Any solution is appreciated
Sub main()
Set swApp = _
Application.SldWorks
Set Part = swApp.ActiveDoc
Part.ClearSelection2 True
longstatus = Part.SaveAs3("Z:\CAS1259F5\1259F5-P02-REV0.PDF", 0, 0)
End Sub