Hi, Krool!
What does the negative value of the SQLiteDataSet.Position property mean? It is -3 in my case.
Edited:
Got it.
Code:Public Property Get Position() As Long If PropRecordCount(0) > 0 Then If PropPosition > PropRecordCount(0) Then Position = -3 ElseIf PropPosition < 1 Then Position = -2 Else Position = PropPosition End If Else Position = -1 End If End Property




Reply With Quote