Reply to thread

Hey again,


The error message you quote doesn't match the code in question.  The error message says "Form1" but you're referencing "SetupForm1" in the code.  Are you sure this is where the error is?


Maybe you pasted the message and then changed the code... so here's what it could be in that case...


Maybe your form is in a different namespace to the rest of the code.  So you may need to add a "using plugin.forms;"


Or you may need to refer to the SetupForm class by it's fully qualified name, something like:


MediaPortal.Plugins.Forms.SetupForm SetupForm1 = new MediaPortal.Plugins.Forms.SetupForm();


If you get really stuck you could attach the full source (zipped up) to this post and I could take a look for you?


Cheers,


Top Bottom