Set firstForm via solutionModel?

Is it possible to set the firstForm via solutionModel (or any other means) in my solutions onOpen method to a solutionModel created form? My solutions onOpen method looks like this:

function onSolutionOpen() {
	var _fLayout = solutionModel.newForm('frmLayout',null,null,null,false,320,240);
	_fLayout.navigator = SM_DEFAULTS.NONE;
	_fLayout.newLabel('It Worked!',0,0,320,20,null);

//	HOW DO I SET firstForm to frmLayout and have it render?
}

That is all there is to the entire solution. No other code, forms, etc. I’ve heard over and over that with solutionModel you can do everything that you can do in developer so this “should” be possible I would think.

Thanks in advance,

Keith

Why not simply use
forms[‘frmLayout’].controller.show(); ?

Try this:

	/** @type {JSForm} */ 
	var _fLayout = solutionModel.newForm('frmLayout',null,null,false,320,240);
	_fLayout.navigator = SM_DEFAULTS.NONE;
	var _label = _fLayout.newLabel('It Worked!',0,0,320,20,null);
	forms['frmLayout'].controller.show();

Hope this help.

TY Patrick and Gianluca. That worked great.