如何从x ++中的StringEdit控件获取值并将其插入新记录?
现在我有:
ttsBegin;
update_recordSet _empl setting Name=<and here goes input from control>
where _empl.RecId==pole;
ttsCommit;
答案 0 :(得分:2)
这不是AX中的工作方式,但如果你坚持:
update_recordSet _empl setting Name = nameCtrl.text()
where _empl.RecId == pole;
可以通过将nameCtrl
属性设置为是来声明AutoDeclation
控件。
也就是说,表格字段可能更容易to make the control bound。