Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
is there any ideas on how to use ilogic to close an . idw file without saving it
Thank you in advance 🙂
Solved! Go to Solution.
Hi,
is there any ideas on how to use ilogic to close an . idw file without saving it
Thank you in advance 🙂
Solved! Go to Solution.
Try this:
Dim doc = ThisDoc.Document doc.Close(True)
thanks for the replay. i tried it and it gave a msg box saying "Catastrophic failure"
Try this:
Call New System.Threading.Thread(Sub() ThisDoc.Document.Close(True)).Start
Thank you aelqabbany.