2006-09-26, 01:23 PM
Hi,
I tried to follow Jasons GBPvr Plug-in PDF Tutorial abut I already struggle at the beginning...
I downloaded Microsoft Visual C# 2005 Express edition
I added the following Code
just to get the very first steps but I get attached JPG error message ...
Anyone or is it a hopeless start for me ;-)
I tried to follow Jasons GBPvr Plug-in PDF Tutorial abut I already struggle at the beginning...
I downloaded Microsoft Visual C# 2005 Express edition
I added the following Code
Code:
using System;
using GBPVR.Public;
namespace FritzBoxPlugin
{
/// <summary>
/// Description for FritzBoxPlugin.
/// </summary>
public class FritzBoxPlugin : IMenuTask
{
#region IMenuTask Members
public void Activate()
{
throw new Exception("The method or operation is not implemented.");
}
public void Deactivate()
{
throw new Exception("The method or operation is not implemented.");
}
public System.Windows.Forms.Form GetConfigFormInstance(System.Xml.XmlDocument document)
{
throw new Exception("The method or operation is not implemented.");
}
public void OnClick(System.Drawing.Point location)
{
throw new Exception("The method or operation is not implemented.");
}
public void OnDoubleClick(System.Drawing.Point location)
{
throw new Exception("The method or operation is not implemented.");
}
public bool OnKeyDown(System.Windows.Forms.KeyEventArgs e)
{
throw new Exception("The method or operation is not implemented.");
}
public void OnMouseWheel(System.Windows.Forms.MouseEventArgs e)
{
throw new Exception("The method or operation is not implemented.");
}
public string getDescription()
{
return " This is the Fritz!BoxPlugin";
}
public string getName()
{
return "Fritz!Box Plugin";
}
public string getSkinSubdirectory()
{
return "FritzBoxPlugin";
}
public System.Drawing.Image getTaskImage()
{
throw new Exception("The method or operation is not implemented.");
}
public bool needsRendering()
{
throw new Exception("The method or operation is not implemented.");
}
public System.Drawing.Image render(out bool requiresMoreRendering)
{
throw new Exception("The method or operation is not implemented.");
}
#endregion
}
}
just to get the very first steps but I get attached JPG error message ...
Anyone or is it a hopeless start for me ;-)