Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Derive a class from flygrid class

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Derive a class from flygrid class
Link Posted: 12-Oct-2006 03:00
Hi,

I want to derive a class from the flygrid class.
Is it possible oder not?
If I do so and if i put the derived class into the Visual Studio designer, I do not see any flygrid.
What do I have to do?

Best regards

msmile

When does the next update/patch/version come?
Link Posted: 12-Oct-2006 04:32
I want to derive a class from the flygrid class.
Is it possible oder not?

Yes, you can derive a class from FlyGrid.
You should embed license file into assembly that contains class derived from FlyGrid.

If I do so and if i put the derived class into the Visual Studio designer, I do not see any flygrid.
What do I have to do?


Please debug your class to know what's happen.

When does the next update/patch/version come?

Currently v1.4.0.40 version - this is a latest FlyGrid update.
Link Posted: 12-Oct-2006 20:01
Yes, you can derive a class from FlyGrid.
You should embed license file into assembly that contains class derived from FlyGrid.


Could you please give me an example?

If I have a class in C#:

namespace AAA.BBB.CCC
{
  public class MyDerivedClassBase : NineRays.Windows.Forms.FlyGrid
  {
    public MyDerivedClassBase()
    {
      // ...
    }
  }
}


Is this all I have to do while creating the derived class?
What do you mean with the licence embedding into the assembly?

Please debug your class to know what's happen.


How can I do this? How to do this with the Designer of the Visual Studio?

Thank you for your help!

Best regards

msmile
Link Posted: 16-Oct-2006 00:22
If I have a class in C#:
Code:

namespace AAA.BBB.CCC
{
  public class MyDerivedClassBase : NineRays.Windows.Forms.FlyGrid
  {
    public MyDerivedClassBase()
    {
       // ...
    }
  }
}


Is this all I have to do while creating the derived class?


Yes, but you forgot to add reference to the base constructor:

public class MyDerivedClassBase : NineRays.Windows.Forms.FlyGrid
{
  public MyDerivedClassBase() : base()
  {
    // ...
  }
}

What do you mean with the licence embedding into the assembly?

You should add NineRays.FlyGrid.lic file to the Visual Studio project that contains derived from FlyGrid class and mark this file (in the Properties of this file) as EmbeddedResource to embed license file into assembly.