Message 1 of 3
ILogic Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL)) after SaveAs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have an external ILogic rule:
Dim PartNumber As String = iProperties.Value("Project", "Part Number") Dim doc = ThisDoc.Document Parameter("GSS_SortCode") = PartNumber.Substring(0,3) doc.Save
When I SaveAs a document, I get
My guess is that is is because ThisDoc refers to the document where I clicked SaveAs, and the ILogic rule is triggered to run after save and therefore on the new document?