https://bugs.documentfoundation.org/show_bug.cgi?id=147497

--- Comment #3 from Robert Großkopf <rob...@familiegrosskopf.de> ---
This buggy behavior also will appear when trying to get such an AutoValue by

stNID = oForm.getString(oForm.findColumn("ID"))

in a macro. So I have to switch macros to 

stNID = oForm.getString(oForm.findColumn("ID"))
IF stNID = 0 THEN
   oForm.reload()
   stNID = oForm.getString(oForm.findColumn("ID"))
END IF

This will work when form is sorted by 
"ID" DESC

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to