Hi All.
Is it possible to auto close a part program once it has finished ? Do I need a script ?
Thanks.
Stuart.
Is it possible to auto close a part program once it has finished ? Do I need a script ?
Thanks.
Stuart.
Sub Main() Dim DmisApp As Object Dim DmisPart As Object Set DmisApp = CreateObject("PCDLRN.Application") Set DmisPart = DmisApp.ActivePartProgram DmisPart.Close End Sub
Comment