Sparx Systems Forum

Enterprise Architect => General Board => Topic started by: Greg_PL on July 02, 2024, 08:51:04 pm

Title: Set Active MDG for all users - how?
Post by: Greg_PL on July 02, 2024, 08:51:04 pm
Hi!

I'm trying to find way to set a default (active) MDG for all users. Currently I can set it locally only. Can it be a model / project property?

Thanks!
Greg
Title: Re: Set Active MDG for all users - how?
Post by: Geert Bellekens on July 02, 2024, 09:17:12 pm
I'm using an EA-Matic script to do that.

You can probably do the same using an add-in or model-addin.

Code: [Select]
function EA_FileOpen()
Repository.ActivateTechnology "MyMDG"
end function

Geert