Below is some code someone suggested to me to have a program auto save while its running. I know very little to nothing about this. Would someone be will to explain to me what the code is doing in the script?
Thank you guys in advance
Make a Basic Script:
Sub SaveDuringExecution()
'Create objects
Dim PCDMISApp As Object
Set PCDMISApp = CreateObject("PCDLRN.Application")
Dim PCDMISPart As Object
Set PCDMISPart = PCDMISApp.ActivePartprogram
'Save existing program
PCDMISPart.Save
' finish
Set PCDMISApp = Nothing
Set PCDMISApp = Nothing
End Sub
Put it in a subprogram and you can easily summon the script in your partprogram by typing 'CALLSUB' and select the subprogram.
You can also run the sctript directly in the partprogram but it's easier when you place it in a subprogram.
But if you check out the PCDMIS forum (Nexus), you can find answers for questions like these ;)