Hi
I am triying to run your page control sample in lazarus and I get this error
Class "TTMSFNCTreeView" not found
Any suggestion ?
Thanks
Pieter
(Pieter)
November 10, 2016, 8:23am
2
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.
Pieter
(Pieter)
November 11, 2016, 7:48am
4
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