S
Steven
I have the following code:
Dim db As Database
Dim rs As Recordset
Dim Qd As QueryDef
Set db = CurrentDb()
Set rs = db.OpenRecordset("Table1", dbOpenDynaset)
Question 01: I want to set the order of this recordset to
one of Table1's indexes. How do I do this?
Questoin 02: If there is a PrimaryKey does it always
default the PrimaryKey index order on an open recordset?
Thank you,
Dim db As Database
Dim rs As Recordset
Dim Qd As QueryDef
Set db = CurrentDb()
Set rs = db.OpenRecordset("Table1", dbOpenDynaset)
Question 01: I want to set the order of this recordset to
one of Table1's indexes. How do I do this?
Questoin 02: If there is a PrimaryKey does it always
default the PrimaryKey index order on an open recordset?
Thank you,