ERROR on compile Delphi Project

edited 1:13PM in FreeReport
I discovered an error, you cannot create a "object shape" and overlap to a "object data", for example.

Comments

  • edited 1:13PM
    the error alone occurs when compiling the project in delphi7 :

    I discovered an error, you cannot create a "object shape" and overlap to a "object data", for example. The tip for the programmers of this project to analyze this:

    FR_Class.unit :

    {
    }
    function frCreateObject(Typ: Byte; const ClassName: String): TfrView;
    var
    i: Integer;
    begin
    Result := nil;
    case Typ of
    gtMemo: Result := TfrMemoView.Create;
    gtPicture: Result := TfrPictureView.Create;
    gtBand: Result := TfrBandView.Create;
    gtSubReport: Result := TfrSubReportView.Create;
    gtLine: Result := TfrLineView.Create;
    gtAddIn:
    begin
    for i := 0 to frAddInsCount - 1 do
    if frAddIns.ClassRef.ClassName = ClassName then
    begin
    Result := TfrView(frAddIns.ClassRef.NewInstance);
    Result.Create;
    Result.Typ := gtAddIn;
    break;
    end;
    //
    //
    // Delphi Stop Here !!!!
    //
    if Result = nil then
    raise EClassNotFound.Create('???? ?­? ?©?¤???­ ???«? ?±?± ' + ClassName);
    end;
    end;
    if Result <> nil then
    begin
    Result.ID := ObjID;
    Inc(ObjID);
    end;
    end;
  • edited 1:13PM
    hi, i'm new guy in here. but i'll try to my best..

    1. add some breakpoint to that code, especialy at case block
    2. since only addin that "search" the class reference. i suspect that iteration can not find the right class. so, adding a unit name that consist that add-in would be solved the problem.

    in my fr-class.pas, i add all add-in unit even i dont need it.
    extra memory, but saver to all kind of template.

    regards,
    Dwi

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.