H
Hamid
Hi all,
I hope it is not off topic.
It turns out that filtering a recordset, creates recordsets that do not
inherit the parent recordsets caption. Is this true? Besides I can not
add any property to fields of the recordset. Are they readonly?
I am using
MS Access 2003 (11,6355,6360) SP1
MS Windows XP Home Edition Version 2002 Service Pack 1
' Snippet----------
' Recordsets are all declared DAO.Recordset
With rstCourseAll
.Filter = "isMain = '*'"
Set rstCourseMain = .OpenRecordset
.Filter = "isMain <> '*'"
Set rstCourseExtra = .OpenRecordset
End With
' Snippet End------
Thanx for your attention.
I hope it is not off topic.
It turns out that filtering a recordset, creates recordsets that do not
inherit the parent recordsets caption. Is this true? Besides I can not
add any property to fields of the recordset. Are they readonly?
I am using
MS Access 2003 (11,6355,6360) SP1
MS Windows XP Home Edition Version 2002 Service Pack 1
' Snippet----------
' Recordsets are all declared DAO.Recordset
With rstCourseAll
.Filter = "isMain = '*'"
Set rstCourseMain = .OpenRecordset
.Filter = "isMain <> '*'"
Set rstCourseExtra = .OpenRecordset
End With
' Snippet End------
Thanx for your attention.