Message 1 of 6

Not applicable
05-27-2016
06:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hey all,
I'm trying to save a file as "PartNumber-SequenceNumber.ipt" with iLogic code. For example, 12345678-0001.ipt is how a file would look if the code were functioning properly.
So far, what I've got is this:
Dim PartNumber As String Dim SequenceNumber As String PartNumber = iProperties.Value("Project", "Part Number") SequenceNumber = iProperties.Value("Custom", "Sequence Number") ThisDoc.Document.SaveAs(PartNumber & "-" & SequenceNumber, False)
I think I'll need to specify file location too...not sure though.
Thanks in advance!
-Luke
Solved! Go to Solution.