Changing A Solution Type To Module Type

Hi there, I am trying to integrate the multi tenant .servoy file into my solution. I have however found that because both are “solutions” I cannot get one to communicate with the other (i.e once the user has been positively identified - I cannot get the multi tenant solution to open the main menu of my solution). I have tried to change each solution to a module - but without success. Can any one help please?

a solution (or module) can only access its own modules again, not the solution (or modules) that are linked to him.

So if a module of your solution wants to show forms of the main solution you have to configure the module to do that sort of like this:

mainsolution global method:

function configureModule()
{
   moduleGlobalMethod("solutionsformname")
}

module global methods:

var callbackform;
function moduleGlobalMethod(formname) {
   callbackform = formname
}

function showMainSolutionsForm() {
   forms[callbackform].controller.show();
}

OK - thank you!