将文件加载到 TAdvMemo

发布于 2025-01-01 08:47:42 字数 49 浏览 1 评论 0原文

有没有办法不使用 AcceptFile 拖放选项将文件内容加载到 TAdvMemo?

Is there a way to load the content of a file to TAdvMemo not using the AcceptFile drag and drop option?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2025-01-08 08:47:42

大多数基于 VCL 的备忘录控件(包括第三方控件)都有一个 Lines.LoadFromFile 或类似的东西。

根据 TMS 的 网站TAdvMemo 有一个Lines 属性,它应该是 TStrings 后代,因此应该支持 LoadFromFile。 (请参阅我链接到的常见问题解答页面,特别是有关查看文本是否为空的问题 - 它使用 Lines 属性。)

所以它应该像(Delphi 代码)一样简单:

AdvMemo1.Lines.LoadFromFile('C:\Temp\YourFile.txt');

所以,在 C++ 中生成器应该是这样的:

AdvMemo1->Lines->LoadFromFile("C:\\Temp\\YourFile.txt");

Most VCL-based memo controls (including third-party ones) have a Lines.LoadFromFile or something similar.

According to TMS's website, TAdvMemo has a Lines property, which should be a TStrings descendant and therefore should support LoadFromFile. (See the FAQ page I linked to, specifically the question about seeing if the text is empty - it uses the Lines property.)

So it should be as easy as (Delphi code):

AdvMemo1.Lines.LoadFromFile('C:\Temp\YourFile.txt');

So, in C++ Builder it should be something like:

AdvMemo1->Lines->LoadFromFile("C:\\Temp\\YourFile.txt");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文