论坛


   修正qiita.com网页变更导致的采集问题
2025年7月24日     


2025年8月13日 星期三

WebStencils is About to Get More Powerful in RAD Studio 13

Antonio Zapater| Embarcadero Delphi Blogs |15:41:12

This blog post is based on a pre-release version of the RAD Studio software. No feature is committed until the product’s GA release. Web development will get much easier with the upcoming enhancements in RAD...

RAD Studio 13 Update: What We Know So Far, And What’s Coming

Hagop Panosian| Embarcadero Delphi Blogs |15:23:04

By now you’re probably aware that Embarcadero is gearing up for the release of RAD Studio 13 Florence. You may have also discovered that RAD Studio 13 will introduce a new Ternary Operator for Delphi,...

Pas2JS_Widget编译出来的js使用compileserver.exe显示不正常的处理方法 - 秋·风

秋·风| 博客园 - 秋·风 |01:17:00

【摘要】使用默认的compileserver.exe测试Pas2JS_Widget编译出来的js,浏览器显示为空白。经排查发现需使用ssl才能正常显示,但compileserver.exe不支持ssl,需要添加ssl支持单元。处理步骤:1、修改fpcsrc\utils\pas2js\httpcompiler <a href="https://www.cnblo...

2025年8月12日 星期二

.NET 10 Preview 7 is now available!

.NET Team| ASP.NET Blog |19:20:00

Find out about the new features in .NET 10 Preview 7 across the .NET runtime, SDK, libraries, ASP.NET Core, Blazor, C#, .NET MAUI, and more!The post.NET 10 Preview 7 is now available!appeared first on.NET Blog.

[Delphi] iOS / Android で画像を Shared Pictures に保存する(Delphi 12.x)

pik| qiita.com |18:07:39

Delphi 12 で画像保存の問題点 Windows と macOS では得に問題がないものの、モバイルOS では画像保存に大きなバグがあります。 なんなら画像保存なんてできないぐらいの大きなバグです。 影響範囲は全ての画像保存です。 TBitmap.SaveToFil...

2025年8月11日 星期一

[教程] TZSvgImageLite 使用教程

swish| QDAC官方网站 |03:12:39

TZSvgImageLite 是一个简化 […]

2025年8月9日 星期六

DelphiでGetMemやAllocMemの代わりに動的配列のSetLengthを使って、スマートポインタもどきを実現する

takahasinaoki| qiita.com |21:58:42

サンプル1 可変長配列付き構造体で領域を動的に確保する例 PBitmapInfo = ^TBitmapInfo; TBitmapInfo = record bmiHeader: TBitmapInfoHeader; bmiColors: array[0..0] ...

2025年8月7日 星期四

[教程]怎么在父类中判断一个类的虚拟成员函数当前是否被子类继承过

swish| QDAC官方网站 |10:10:21

【应用场景】 父类要根据子类是否实现了对 […]

2025年8月5日 星期二

Exploring new Agent Quality and NLP evaluators for .NET AI applications

Shyam Namboodiripad| ASP.NET Blog |17:05:00

Introducing Agent Quality and NLP evaluators in the Microsoft.Extensions.AI.Evaluation libraries.The postExploring new Agent Quality and NLP evaluators for .NET AI applicationsappeared first on.NET Blog.

.NET Conf 2025 – Announcing the Call for Content

Jeffrey T. Fritz| ASP.NET Blog |16:00:00

The .NET Conf 2025 Call for Content is now open! Join us November 11-13 for the premier .NET virtual event celebrating .NET 10. Submit your session proposal by August 31st and share your .NET expertise with developers worldwide.The post.NET Conf 2...

为lazreport增加变量赋值功能 - 秋·风

秋·风| 博客园 - 秋·风 |01:44:00

【摘要】lazreport对报表变量赋值使用GetValue方式,这方式不直观简便。 procedure TForm1.frReport1GetValue(const ParName: String; var ParValue: Variant ); begin if ParName='aa' then P <a href="https://www.cnblogs.com/qiufeng2014/p/1...

[教程]为 FMX TPathData 增加旋转及编码优化

swish| QDAC官方网站 |01:12:30

话不多说,直接 Show code: 1 […]

2025年8月4日 星期一

pas2js的使用 - 秋·风

秋·风| 博客园 - 秋·风 |08:17:00

【摘要】lazarus安装后带pas2js编译器,但要使用pas2js需要正确配置才能编译,配置步骤:1、到gitlab下载pas2jshttps://gitlab.com/freepascal.org/fpc/pas2js下载后,将pas2js解压到适当位置2、配置pas2js.cfg根据刚才解压pas2 <a href="https://www.cnblogs.com...

2025年8月3日 星期日

The Real Truth About AI, With David Cornelius. “Read The Webinar” Series

Hagop Panosian| Embarcadero Delphi Blogs |22:11:38

Embarcadero webinars and online coding events are a treasure trove of priceless insights into the professional lives and experience of Delphi developers around the world. To make sure those insights are available in multiple formats...

2025年8月2日 星期六

Delphiでアルファ値やpng,jpgファイルを扱うときはGDI+をお勧めします

takahasinaoki| qiita.com |18:26:08

はじめに Delphiに関するpngファイルの質問でアルファデータがうまく反映出来ないとう悩みを良くみかけるのですが、そのような問題を解決するには、GDI+がおすすめです ファイルを読み込む時に自動で画像形式を判別して、Canvasに描画するときもアルファデータを適切...