1
Automation Interface, Add-Ins and Tools / How to "Apply / Release User Lock" ?
« on: July 19, 2007, 10:36:18 pm »
Hello All,
we use the security "Apply/Release User Lock..." functionality in the Corporate Edition. I can't find a way to lock and edit element via the automation interface...
checking the lock i get TRUE, meaning its already locked by somebody
1. - how to identify the user ?
2. - how to remove lock as "Project | Security | Manage Locks..." in EA ?
3. - how to lock an element as "Apply/Release User Lock..." in EA ?
Thanks,
HelmutK
we use the security "Apply/Release User Lock..." functionality in the Corporate Edition. I can't find a way to lock and edit element via the automation interface...
Code: [Select]
earep = new EA.RepositoryClass();
earep.OpenFile2(connectstring, user, password);
bool islocked = earep.GetPackageByID(3309).Element.Locked;checking the lock i get TRUE, meaning its already locked by somebody
1. - how to identify the user ?
2. - how to remove lock as "Project | Security | Manage Locks..." in EA ?
3. - how to lock an element as "Apply/Release User Lock..." in EA ?
Thanks,
HelmutK