digao-dalpiaz / DzHTMLText

Delphi and Lazarus HTML Label component
MIT License
194 stars 53 forks source link

E1026 File not found #83

Closed hafedh-trimeche closed 9 months ago

hafedh-trimeche commented 9 months ago

Hi,

Please note these errors:

MSBUILD : error E1026: E1026 File not found: 'Dam_Resource.res'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamMsgEdit.dfm'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamFind.dfm'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamList.dfm'
MSBUILD : error E1026: E1026 File not found: 'Dam_Resource.res'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamMsgEdit.dfm'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamFind.dfm'
MSBUILD : error E1026: E1026 File not found: 'Vcl.DamList.dfm'
digao-dalpiaz commented 9 months ago

Hello,

Are you installing component manually ? Please tell me which version of component, and Delphi Version.

Thanks

hafedh-trimeche commented 9 months ago

It compiles before this update:

Delphi 11 Version 28.0.48361.3236

unit ucHTMLLabel;
{$I ReleaseDebug.inc}
interface
uses
  BaseControls,Types,Classes,Windows,Graphics,Messages,Forms,ExtCtrls,StdCtrls,ComCtrls,Controls,
  Menus,
  {$IFDEF FPC}
  ComponentEditors,
  {$ELSE}
  DesignEditors,
  {$ENDIF}
  DamUnit,Vcl.DzHTMLText;
type
  [ComponentPlatformsAttribute(pidAll)]
  TUHTMLLabel=class(TDzHTMLText)
  end;

  [ComponentPlatformsAttribute(pidAll)]
  TUHTMLLabelEdit = class(TDam)
  end;

implementation

end.
digao-dalpiaz commented 9 months ago

From the errors described, it appears that you are using Dam together with DzHTMLText. Both components had their folder structures modified.

Note that the path where the libraries are compiled has changed to the Lib\{Platform}\{Config} folder.

hafedh-trimeche commented 9 months ago

Design moved to Source\Design

Solved!

Thanks