<?xml version='1.0' encoding='gb2312'?>
<rss version='2.0'>
<channel>
<title>盒子论坛</title>
<description>DELPHI盒子技术论坛</description>
<link>https://bbs.2ccc.com/</link>
<language>zh-cn</language>
<copyright>Copyright 2004, bbs.2ccc.com</copyright>
<webMaster>root@2ccc.com</webMaster>
<docs>https://bbs.2ccc.com/rss.asp</docs>
<generator>Rss Generator By bbs.2ccc.com</generator>
<item>
<title><![CDATA[现在用AI辅助开发，感觉国内模型确实差不多够用了]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768084</link>
<author>pherody </author>
<description><![CDATA[试了这么多国内模型，KIMI K3最强，DEEPSEEK v4 0731与GLM5.2感觉差不多，HY3稍差点，纯自我感觉，大家是不是也这样认为？
好处是只要规划好技术路线，AI就基本上可以完成了，不好的地方就是一下子代码太多，现在想看代码有什么问题，看半天头都大了，就懒得看，让模型自己找问题。]]></description>
<comments>回复:1 浏览:49</comments>
<pubDate>Tue, 04 Aug 2026 03:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[Dev的事件委托, 把AI都搞迷惑..]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768070</link>
<author>tuesdays </author>
<description><![CDATA[明白——你想在 CoLMouseDown/CoLMouseUp 入口最前面就 Exit，不让双击的第二轮（Down2/Up2）跑进方法体。这比在方法中间判断干净得多。

核心还是那个判据：XDblClick 刚发生过。但要让它在前置 Exit 可靠，得想清楚标志的生命周期。

方案：XDblClick 置标志，Down/Up 入口前置 Exit
时序复盘（实测）

Down1 → Up1 → CLK#1 → DBL → CLK#2 → Down2 → Up2
          ↑置标志    ↑Exit   ↑Exit
DBL 在 Down2/Up2 之前，所以 DBL 置标志后，Down2 和 Up2 都能在入口检测到并 Exit。

关键问题：标志谁来复位？
如果 Down2/Up2 都 Exit 了，标志没人复位 → 残留 → 下一次真实单击被误吞。所以必须有一个地方复位。

两个选择：

选择 A：Down2 复位（吞 Down2），Up2 不用吞

DBL 置标志 → Down2 入口检测到 → 复位标志 + Exit。
Down2 被吞，没置 FIsDown。Up2 进入时 FIsDown=False → 走 Link.pas:1233 if not FIsDown 分支 → 左键 ClearItemsCheck + Exit。
问题：Up2 会 ClearItemsCheck（清多选）。双击后多选被清——可能误清。
但 Up2 不进删除/移动分支（已注释），不会删 item。Bug2 安全。
选择 B：Down2 和 Up2 都吞，各自复位

DBL 置标志 → Down2 入口检测到 → 复位标志 + Exit。
但 Up2 入口标志已被 Down2 复位 → Up2 检测不到 → 走正常流程 → FIsDown=False → ClearItemsCheck。
同样问题：Up2 还是会 ClearItemsCheck。
所以只要 Down2 吞了 FIsDown 没置，Up2 必然走 if not FIsDown 分支 → ClearItemsCheck。这是 Down2 被吞的必然副作用，除非 Up2 也单独吞。

真
d#1145-1145
CoLMouseDown 与上一次CoLMouseDown的时间距离呢?
这是个聪明的判据——用两次 Down 的时间间隔区分 Down2 和正常单击。

思路验证
双击的 Down1 和 Down2 间隔极短（双击间隔，系统默认 ~500ms 内，实际通常 200-400ms）。而两次独立单击的间隔通常更长（人有意操作，>500ms）。

但这里有个致命问题：判据方向反了。

你想用"距上次 Down 很近"识别 Down2。但 Down2 进入时，能比对的"上次 Down"是 Down1——间隔确实短。可问题是：

Down2 入口怎么知道"上次 Down"是 Down1 还是上一次独立单击？

假设用户快速连击两次（两次独立单击，间隔 300ms）：

第1次单击 Down → Up → 打开
第2次单击 Down（间隔 300ms）→ 入口判"距上次 Down 300ms，很近" → 误判为 Down2 吞掉 → 第2次单击失效
快速连击是合法操作，会被误杀。

双击间隔 vs 快速单击——区分不了
场景	两次 Down 间隔
双击的 Down1→Down2	~200-400ms
快速连击两次单击	~300-500ms
两者重叠，纯靠时间间隔区分不了。Windows 自己判双击也是用时间间隔 + 同坐标两个条件——但即使加了同坐标，快速同点连击两次单击和双击依然区分不了（这就是为什么双击模式存在——单击模式默认双击会触发两次单击打开）。

真正能区分的只有"系统判定为双击"这个事实
Down2 之所以是 Down2，不是因为它距 Down1 近，而是因为系统把它当双击的第二下（发了 WM_LBUTTONDBLCLK 而非 WM_LBUTTONDOWN）。这个事实体现在 Shift 参数里——WM_LBUTTONDBLCLK 派发的 MouseDown，Shift 含 ssDouble！

让我验证这个。VCL TControl.WMLButtonDblClk 把 WM_LBUTTONDBLCLK 当 WM_LBUTTONDOWN 重新派发时，传给 MouseDown 的 Shift 包含 ssDouble。DevExpress 全链没覆写，原样保留。

如果是这样，Down2 入口可以直接判 ssDouble in Shift——这是 Down2 独有的、Down1 和正常单击都没有的标志，零歧义。

让我查 VCL 源码确认 ssDouble 的传递。]]></description>
<comments>回复:1 浏览:123</comments>
<pubDate>Mon, 03 Aug 2026 06:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[Delphi 13 关于 ARM 开发一点见解]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768060</link>
<author>bear1022 </author>
<description><![CDATA[1、目前 Delphi 13 的PAServer 无 ARM 版本，但有X86 的Linux版本。经过测试，直接将Ubuntu 24 上的SDK 复制到Delphi 13的目录下，可以脱离PAServer，在本地交叉编译，生成可执行文件，可执行文件可以在X86的Ubuntu 上完美运行。
2、如果将 ARM版本上的Ubuntu 的SDK，也按要求，复制到Delphi13的本地，是否也应该可以做本地编译？]]></description>
<comments>回复:8 浏览:177</comments>
<pubDate>Mon, 03 Aug 2026 03:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[请问一下，用ctrl+D格式化代码，默认是80个字符就换行，能不能设置长一点？]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768055</link>
<author>smallxxx </author>
<description><![CDATA[如题，谢谢]]></description>
<comments>回复:9 浏览:107</comments>
<pubDate>Mon, 03 Aug 2026 01:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS 2026年8月合集]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768038</link>
<author>tms2021 </author>
<description><![CDATA[控件下载请加QQ群：462884906

请勿转发！

感谢007

通过网盘分享的文件：TMS20260801.7z
链接: https://pan.baidu.com/s/1YsZwCXTnR4VCknrBaDw7Gg 提取码: 8h2n 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:4 浏览:144</comments>
<pubDate>Sat, 01 Aug 2026 05:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[常用控件合集 2026年8月]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768037</link>
<author>tms2021 </author>
<description><![CDATA[控件下载请加QQ群：462884906

请勿转发！

感谢007

通过网盘分享的文件：常用控件合集 2026.8.1.7z
链接: https://pan.baidu.com/s/1R2opI7pqbE8hl9qqaTkuVQ 提取码: np2a 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:9 浏览:249</comments>
<pubDate>Sat, 01 Aug 2026 05:08:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[求一个TatukGIS组件的Delph 12版本，谢谢！]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768017</link>
<author>thinkpascal </author>
<description><![CDATA[Delphi唯一的GIS开发组件包，官网[url=Https://www.tatukgis.com/Home]Https://www.tatukgis.com/Home[/url]]]></description>
<comments>回复:5 浏览:192</comments>
<pubDate>Thu, 30 Jul 2026 11:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[fastreport，导出excel，最后一行缺失了。。。 [含附件]]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768014</link>
<author>draculamx </author>
<description><![CDATA[c++ builder 10.2.3,使用fastreport生成了报表，但是在报表中导出excel的时候，最后一行缺失了，原因在哪里？？]]></description>
<comments>回复:3 浏览:167</comments>
<pubDate>Thu, 30 Jul 2026 09:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS XData v5.27.0.0 for Delphi XE2-13 Florence Full Source]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=768007</link>
<author>tms2021 </author>
<description><![CDATA[控件下载请加QQ群：462884906

请勿转发！

通过网盘分享的文件：TMS XData v5.27.0.0 for Delphi XE2-13 Florence Full Source.rar
链接: https://pan.baidu.com/s/1sPiAwawrX4nuzhCrOfKliA 提取码: t9vk 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:0 浏览:103</comments>
<pubDate>Wed, 29 Jul 2026 09:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[请各位大佬推荐一个简单好用的 Log 库]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767971</link>
<author>pcplayer </author>
<description><![CDATA[我不想用那种非常大型功能繁多的，什么可以发 Email 之类的那些功能我不需要，就是简单的写磁盘文件做 log 的库。]]></description>
<comments>回复:13 浏览:372</comments>
<pubDate>Tue, 28 Jul 2026 03:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[Delphi 13.2 内测]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767960</link>
<author>my_only_lonely </author>
<description><![CDATA[https://blogs.embarcadero.com/update-subscription-customers-invited-to-join-rad-studio-pasiphae-beta/

有没有大佬有内测的更新pdf？]]></description>
<comments>回复:38 浏览:1250</comments>
<pubDate>Mon, 27 Jul 2026 15:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[发现一个 Delphi 的 AI Agent 开源项目]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767959</link>
<author>pcplayer </author>
<description><![CDATA[https://github.com/FMXExpress/PasClaw]]></description>
<comments>回复:4 浏览:270</comments>
<pubDate>Mon, 27 Jul 2026 14:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS VCL UI Pack v13.6.6.0 for Delphi & CB 7-13 Florence Full Source]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767955</link>
<author>tms2021 </author>
<description><![CDATA[
控件下载请加QQ群：462884906

请勿转发！

通过网盘分享的文件：TMS VCL UI Pack v13.6.6.0 for Delphi & CB 7-13 Florence Full Source.rar
链接: https://pan.baidu.com/s/1NUQvRm2XoFt7pEXMxy5teA 提取码: fhit 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:1 浏览:87</comments>
<pubDate>Mon, 27 Jul 2026 04:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS FNC UI Pack v7.2.0.0 for Delphi & CB XE7-13 Florence Full Source]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767934</link>
<author>tms2021 </author>
<description><![CDATA[控件下载请加QQ群：462884906

请勿转发！

通过网盘分享的文件：TMS FNC UI Pack v7.2.0.0 for Delphi & CB XE7-13 Florence Full Source.rar
链接: https://pan.baidu.com/s/1wgb33n_2mitG0D4RhaZx9Q 提取码: 5m44 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:0 浏览:49</comments>
<pubDate>Fri, 24 Jul 2026 01:07:00 GMT</pubDate>
</item>
<item>
<title><![CDATA[TMS FNC Core v4.3.0 for Delphi & CB XE7-13 Florence Full Source]]></title>
<link>https://bbs.2ccc.com/topic.asp?topicid=767935</link>
<author>tms2021 </author>
<description><![CDATA[控件下载请加QQ群：462884906

请勿转发！

通过网盘分享的文件：TMS FNC Core v4.3.0 for Delphi & CB XE7-13 Florence Full Source.rar
链接: https://pan.baidu.com/s/15G7oRCiaYNVTm17ZVLLu2Q 提取码: 6gvj 
--来自百度网盘超级会员v7的分享]]></description>
<comments>回复:4 浏览:117</comments>
<pubDate>Fri, 24 Jul 2026 01:07:00 GMT</pubDate>
</item>
</channel></rss>