将文件加载到 TAdvMemo
有没有办法不使用 AcceptFile 拖放选项将文件内容加载到 TAdvMemo?
Is there a way to load the content of a file to TAdvMemo not using the AcceptFile drag and drop option?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数基于 VCL 的备忘录控件(包括第三方控件)都有一个 Lines.LoadFromFile 或类似的东西。
根据 TMS 的 网站,
TAdvMemo
有一个Lines
属性,它应该是TStrings
后代,因此应该支持LoadFromFile
。 (请参阅我链接到的常见问题解答页面,特别是有关查看文本是否为空的问题 - 它使用Lines
属性。)所以它应该像(Delphi 代码)一样简单:
所以,在 C++ 中生成器应该是这样的:
Most VCL-based memo controls (including third-party ones) have a
Lines.LoadFromFile
or something similar.According to TMS's website,
TAdvMemo
has aLines
property, which should be aTStrings
descendant and therefore should supportLoadFromFile
. (See the FAQ page I linked to, specifically the question about seeing if the text is empty - it uses theLines
property.)So it should be as easy as (Delphi code):
So, in C++ Builder it should be something like: