|
|
|
|
|
| | |
|
Active Server Pages asp search engine active server page asp application components tutorial CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
ActiveX Recordset Properties |
From: |
Paul Distant |
Date: |
10/2/2000 10:55:30 AM |
IP: |
212.43.182.2 |
Ive got ActiveX dll to create a disconnected record set. When called through my script it returns a recordset. The problem is that I cannot set the .Pagesize, .CursorType, and.MaxRecords which I need to implement paging.
The dll sets these properties before creating the recordset to which Im trying to use. The script used to extract recrds from the dll is:
Set rs = Server.CreateObject("ADODB.Recordset")
rs.CursorType = adOpenKeyset
rs.PageSize = 20
rs.MaxRecords = 500
Set rs = objEztext.GetAllEntries Dll call
Im getting the default page size (10) and MaxRecords (0) which I dont want.
Any ideas on getting around the problem?
Paul |
|
|
|
|
|
|
|
|
|
|
|
|