Please Help
Why wont this work? It should open a new recordset with single record in it, the one that the cursor is at on in adoRecords
Dim nRS As Recordset
Dim b As Variant
b = adoRecords.Bookmark
Set nRS = adoRecords.Clone
nRS.Filter = Array(b)
It is then used as the datasource for a datareport
With dr
.Hide
Set .dataource = nrs
.datamember = ""
...etc
Can someone plz tell me what i am doing wrong
Thank You
Why wont this work? It should open a new recordset with single record in it, the one that the cursor is at on in adoRecords
Dim nRS As Recordset
Dim b As Variant
b = adoRecords.Bookmark
Set nRS = adoRecords.Clone
nRS.Filter = Array(b)
It is then used as the datasource for a datareport
With dr
.Hide
Set .dataource = nrs
.datamember = ""
...etc
Can someone plz tell me what i am doing wrong
Thank You