Results 1 to 10 of 35

Thread: Pascal eXtended Library (aka Asphyre) released!

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    I Use DelphiXE8 and OSX10.9.5.
    I Want to how report PXL bugs directly on its Bug Tracker?

  2. #2
    Hi, Dear LP. win7 OS, in 64 bit model, compile basic project, report this error: Left side cannot be assigned to.

    [dcc64 Error] PXL.Formats.pas(577): E2064 Left side cannot be assigned to


    2016.07.19 fixed: add xe 10.1 berlin compiler directives. PXL.Config.inc
    {$IFDEF VER310} // Delphi XE 10.1
    {$DEFINE DELPHI_2009_UP}
    {$DEFINE DELPHI_2010_UP}
    {$DEFINE DELPHI_XE_UP}
    {$DEFINE DELPHI_XE2_UP}
    {$DEFINE DELPHI_XE3_UP}
    {$DEFINE DELPHI_XE4_UP}
    {$DEFINE DELPHI_XE5_UP}
    {$DEFINE DELPHI_XE5}
    {$DEFINE DELPHI_XE6_UP}
    {$DEFINE DELPHI_XE6}
    {$DEFINE DELPHI_XE7_UP}
    {$DEFINE DELPHI_XE7}
    {$DEFINE DELPHI_XE8_UP}
    {$DEFINE DELPHI_XE8}
    {$DEFINE DELPHI_XE10_UP}
    {$DEFINE DELPHI_XE10}
    {$DEFINE DELPHI_XE101_UP}
    {$DEFINE DELPHI_XE101}
    {$ENDIF}
    Last edited by devchenxip; 19-07-2016 at 02:26 AM. Reason: fixed

  3. #3
    Report a bug: TBitmapFonts.Font[fontname] return a nil value, change TBitmapFonts.insert(...) code:

    Code:
    function TBitmapFonts.Insert(const Font: TBitmapFont): Integer;
    begin
      Result := Length(FFonts);
      SetLength(FFonts, Result + 1);
    
    
      FFonts[Result] := Font;
      FFonts[Result].StyleTags := FStyleTags;
      FFonts[Result].Canvas := FCanvas;
      FSearchListDirty := True; //add this code
    end;
    Last edited by devchenxip; 29-06-2016 at 10:14 AM.

  4. #4

    About Tulip-UI

    Hi, Dear LP, Can you open the code for the Tulip-UI editor?

    http://bbs.2ccc.com/topic.asp?topicid=545520

  5. #5
    Tulip UI author kindly agreed to publish the source code of the editor, which can now be found at:
    https://github.com/MarquitosPT/Tulip
    Last edited by LP; 11-04-2018 at 09:45 PM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •