Reply to thread

I am working a plugin for MediaPortal (obviously, heh), and I am having 1 small issue when starting.


I followed the instructions to the T that are shown in the Plugin Developers Guide, but I am running into 1 small issue that seems to be holding me back.


I am using VB.Net, which _should_ work fine, .Net compiles to the same code regardless...the line in question is:


using MediaPortal.Dialogs;

which translates to VB.Net as:

Imports MediaPortal.Dialogs


I am getting an error of:


[CODE]

Namespace or type specified in the Imports 'MediaPortal.Dialogs'

doesn't contain any public member or cannot be found. Make sure the namespace

or the type is defined and contains at least one public member. Make sure the

imported element name doesn't use any aliases.   

[/CODE]


I have added the core.dll reference as directed, as well as System.Windows.Forms, etc.  Is there something that I am missing, or perhaps that the documentation isn't covering? 


Not having the ability to import MediaPortal.Dialogs can be quite a cramp in development :p


EDIT:

I have attempted to use the C# code that is shown in the Plugin Development Guide, and I get the error of:

[CODE]

Error    1    The type or namespace name 'Dialogs' does not exist in the namespace 'MediaPortal'

(are you missing an assembly reference?)   

[/CODE]


Which brings me to ask: Is there a chance I am missing an assembly reference?  And if so, which?


EDIT #2:


SO, THATS what Dialogs.dll is for.....


Top Bottom