Working with powerdesigner models with excel vba. I have multiple models open that I am trying to access. In my code I can easily access the current active model using:
Dim pd_App As PDCommon.Application
Set pd_App = New PDCommon.Application
Dim baseModel As PdPDM.Model
Set baseModel = pd_App.ActiveModel
Is there a way to switch the active model to another model that is also open? I've looked through the methods available and do not see any methods that can perform this task.
Thanks
I understand it could have side-effects, but the best I can imagine is to use
OpenView
.