You're absolutely sure that _formAssembly is non null?
if so, catch teh exception and psint out the stack trace to see which method is throwing the exception. It may be the form's constructor or InitializeComponent
Regards
Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk
I want to correct a typing error :
Form frm = (Form)_formAssembly.CreateInstance_formClassName);
Should have been
Form frm = (Form)_formAssembly.CreateInstance(_formClassName);
"cristian" <(E-Mail Removed)> wrote in message
news:<#(E-Mail Removed)>...