To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64427





------- Additional comments from [EMAIL PROTECTED] Sun Apr 16 17:14:42 -0700 
2006 -------
The defect *does* appear to be triggered by using .next() when at the end of the
record set. This code will crash:

    For i = 1 To frmPhaseData.RowCount()
        frmPhaseData.next()
    Next

This code is okay:

    For i = 1 To frmPhaseData.RowCount()
       If Not frmPhaseData.isLast() Then
           frmPhaseData.next()
       End If
    Next

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to