free型数据窗口,有字段a,b,c
录入完数据,光标在c字段闪烁,点击保存后再新增,如何让光变跳到a字段
------解决方案--------------------
required 打钩,
itemerror : return 1
------解决方案--------------------
------解决方案--------------------
在editchanaged事件中写:
- C/C++ code
if isnull(dwo) or row <= 0 then returnif dwo.name = 'a' then setitem(row, 'c', dec(data) * getitemdecimal(row, 'b'))elseif dwo.name = 'b' then setitem(row, 'c', dec(data) * getitemdecimal(row, 'a'))end if