I have been going through the Plugin creation tutorial here. I am using VS2005 SP1 on a Vista (x86) machine, running MPv1
All was going well until i got to this bit of code.
I get the compile error
I am using the following as per the guide.
Now, i can only assume that proceedures in Core.Dll have changed since this guide was last updated, but i may be wrong.
Any ideas??
Thanks
G
All was going well until i got to this bit of code.
Code:
private void OnButtonOne()
{
GUIDialogOK dlg = (GUIDialogOK)GUIWindowManager.GetWindow(
(int)GUIWindow.Window.WINDOW_DIALOG_OK);
dlg.SetHeading("Button has been pressed");
dlg.SetLine(1, "You pressed button 1");
dlg.SetLine(2, String.Empty);
dlg.SetLine(3, String.Empty);
dlg.DoModal(GUIWindowManager.ActiveWindow);
}
I get the compile error
The type or namespace name 'GUIDialogOK' could not be found (are you missing a using directive or an assembly reference?)
I am using the following as per the guide.
Code:
using System;
using System.Windows.Forms;
using MediaPortal.GUI.Library;
Now, i can only assume that proceedures in Core.Dll have changed since this guide was last updated, but i may be wrong.
Any ideas??
Thanks
G