Lazarus.- Class "TTMSFNCTreeView" not found

Hi


I am triying to run your page control sample in lazarus and I get this error

Class "TTMSFNCTreeView" not found

Any suggestion ?

Thanks

Hi, 


Can you remove the LCLTMSFNCTreeView unit in the UDemo.pas file?

Thanks for you reply


I have the same error....

unit UDemo;

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs,
  LCLTMSFNCPageControl,  LCLTMSFNCImage, LCLTMSFNCGrid,
  LCLTMSFNCBitmapContainer, LCLTMSFNCRichEditorToolBar;

type

  { TForm1 }

  TForm1 = class(TForm)
    TMSFNCGrid1: TTMSFNCGrid;
    TMSFNCPageControl1: TTMSFNCPageControl;
    TMSFNCPageControl1Page0: TTMSFNCPageControlContainer;
    TMSFNCPageControl1Page1: TTMSFNCPageControlContainer;
    TMSFNCPageControl1Page2: TTMSFNCPageControlContainer;
    TMSFNCRichEditorFormatToolBar1: TTMSFNCRichEditorFormatToolBar;
  private
    { private declarations }
  public
    { public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.lfm}

end.

Can you scan the project for traces of TMSFNCTreeView? Or you could temporarily add this control to the form. Are you using the latest version, and did you install all packages correctly?

I put a new TMSFNCTreeView and solved the problem


Thanks