Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hello Everyone,
I work on Epic 5.4 and I am a beginner, I want to open local file programmatically with the ACL functions.
I want to know if anyone has an example of this kind.
I would be RECOGNIZING if someone can help me
cordially
Two possible options:
(1) From a windows command prompt:
epic.exe "your_report.sgm"
(2) In ACL. (From Jason Buss - http://communities.ptc.com/message/16512#16512 )
Define the file name in a variable: $file = "C:\\file\\myfile.xml";
call: edit -newwindow $file
- Mark