https://issues.apache.org/ooo/show_bug.cgi?id=122264
--- Comment #1 from Francisco Gracia <[email protected]> --- Further experience with OOBase 3.4.1 confirms that all forms of any database are affected by this problem at the moment of their opening. I reported the fault in the case when the searched item was not contained in the first partial set of registers adressed by OOBase. If the information exists in such a set, it is regularly found but *Find next* reproduces the problem by not jumping over it if a new instance of the item is not there. For the moment I have *patched* the inconveniences by attaching the following macro to the opening event of every form in the database: Sub WalkForm( oEvent as object ) ' get a handle to the present form dim thisForm as object thisForm = oEvent.Source ' jump to its last register thisForm.last() ' and back to the first thisForm.first() end sub -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.
