为什么我的 4D Write 文档没有与其余记录一起保存?
在 4D 中,如何保证 4D Write 文档与其余记录一起保存?
In 4D, how do you guarantee that a 4D Write document is saved with the rest of the record?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道,我迟到了。 如果您想自动保存 4D 写入,请在您正在修改的表中创建一个字段,并使用下划线作为最后一个字符。
您的 4D Write 区域名称:myLetter
您的表字段名称:myLetter_ <--“下划线”是秘密
一旦您点击“接受”,4D 就会将其与记录一起保存。
如果您使用 SAVE RECORD,那就是艰苦的工作。 在 SAVE RECORD 之前的行中,您需要将 4D 写入区域传输到您的字段中:
[TableName]myLetter_:=WR AREA TO BLOB(myLetter)
保存记录([TableName])
Peter
I know, I'm late. If you want to save your 4D Write automatically, then create a field in the table you are modifying with an underscore as last character.
Your 4D Write area name: myLetter
Your table field name: myLetter_ <-- the 'underscore' is the secret
And as soon as you hit ACCEPT, 4D will save it together with the record.
If you are using SAVE RECORD, that's the hard work. In the line before the SAVE RECORD you need to transfer the 4D Write Area into your field:
[TableName]myLetter_:=WR AREA TO BLOB(myLetter)
Save Record([TableName])
Peter
ACCEPT 和 SAVE RECORD ([table]) 之间存在差异。
在输入表单上保存 4D Write 文档时,您需要使用 ACCEPT。
There is a difference between ACCEPT and SAVE RECORD ([table]).
When saving a 4D Write document on an input form, you need to use ACCEPT.