Ive looked at the SDK help file, and Im trying to figure out how to make an instance of "_3S.CoDeSys.ProjectArchive.IProjectArchiveService"
so I can Archive the currently loaded project.
Can some one help or send me an example.
Ive tried the following, which didnt work (C#)
var archiveService = ComponentManager.Singleton.InstanceFactory.GetSystemInstance(typeof(_3S.CoDeSys.ProjectArchive.IProjectArchiveService).FullName);
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Ive looked at the SDK help file, and Im trying to figure out how to make an instance of "_3S.CoDeSys.ProjectArchive.IProjectArchiveService"
so I can Archive the currently loaded project.
Can some one help or send me an example.
Ive tried the following, which didnt work (C#)
var archiveService = ComponentManager.Singleton.InstanceFactory.GetSystemInstance(typeof(_3S.CoDeSys.ProjectArchive.IProjectArchiveService).FullName);
Hi BobbieB.
There is no system instance for IProjectArchiveService in CODESYS. You have to create your own instance of the "service" with CreateInstance().
For CODESYS V3.5 SP5 or older:
For CODESYS V3.5 SP6 or newer:
BR
Martin
Thanks for your help. Ive figure out how to create an archive and it appears to work well.