Project Project1.exe raised exception class EClassNotFound with message 'Class TwwRecordViewPanel not found'.
I have not used the TwwLayoutGrid and TwwRecordViewPanel in a project. Everything look good in the designer. When I run my project I get the above error. The source file for the TwwRecordViewPanel is in uses clause.
I created a sample project and it does the same thing.
Source from sample.
unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Edit, FMX.wwEdit, FMX.wwRecPanel, FMX.Layouts, FMX.StdCtrls, FMX.Controls.Presentation,
FMX.wwLayoutGrid, FMX.wwLayouts, FMX.wwManager;
type
TForm1 = class(TForm)
wwLayoutGrid1: TwwLayoutGrid;
wwLayoutGrid1RecordPanel: TwwLayoutPanel;
ToolBar1: TToolBar;
wwRecordViewPanel1: TwwRecordViewPanel;
wwEdit1: TwwEdit;
wwManager1: TwwManager;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
end.
Please sign in to leave a comment.
Comments
1 comment