ComponentOne List 8.0 for ActiveX
ExportNextBookmark Property

 

True DBList Reference> TDBList Properties> ExportNextBookmark Property

ExportNextBookmark Property

The ExportNextBookmark property returns the bookmark after the last row exported by the previous call to the ExportRows method.

Syntax

TDBList.ExportNextBookmark= variant

Remarks

Read-only at run time. Not available at design time.

Property applies to TDBList control.

If ExportRows has not yet been called, this property returns the bookmark specified (or implied) by the previous call to the ExportBegin method.

The ExportNextBookmark property is typically used in server-side applications that present ad hoc query data as a series of HTML tables containing a small number of rows. In such applications, you can store the value returned by the ExportNextBookmark property in a database or collection object for the next call to the ExportBegin method, as in the following example.

Private Sub WebItem1_Respond()

    If Request.Cookies.Count = 0 Then

        TDBList1.ExportBegin

    Else

        TDBList1.ExportBegin Request.Cookies("user"))

    End If

    TDBList1.ExportRows FileName, False, 10

    Response.Cookies("user") = TDBList1.ExportNextBookmark

    TDBList1.ExportEnd

    Response.Redirect FileName

End Sub

Note: The ExportNextBookmark property is only valid between calls to the ExportBegin and ExportEnd methods. A trappable error will occur if you attempt to access it in any other context.

See Also

TDBList and TDBCombo Controls

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback