Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用编辑器表单组件在备注字段中显示信息。我知道使用您使用的图像:
form.image.dataSource = 'binary image_name'
但是对于编辑器,我不知道如何访问备忘录字段并显示其数据。有什么建议、方法吗?
通常使用 dBase 或 xbase,您可以像这样引用表中的列:
MyTable->MyField
或者
MyTable.MyField
所以在你的例子中尝试:
form.image.dataSource = MyTable->MyMemofield
form.image.dataSource = MyTable.MyMemofield