Some more information would be helpful. I give one way below but there
only a few situations in which this might be advantageous.
Private Sub Form_Load()
Dim r As ADODB.Recordset
Set r = New ADODB.Recordset
With r
.CursorLocation = adUseClient
.CursorType = adOpenStatic
.LockType = adLockBatchOptimistic
.ActiveConnection = CurrentProject.Connection
.Open "SELECT * FROM Orders"
End With
Set Me.Recordset = r
End Sub
On Jun 4, 11:46*am, Rachel Garrett <rmgarr...@gmail.comwrote:
If I created a Recordset in VBA, how do I make certain fields show up
in a form?