FinalPrime
Technical User
The Form allows no edits if I populate like so:
Private Sub Form_Load()
Set r = New ADODB.Recordset
With r
.ActiveConnection = CurrentProject.Connection
.CursorLocation = adUseClient
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.Source = "SELECT * FROM tblTrans "
.Open
End With
Set Me.Recordset = r
End Sub
+++++++++++++
Why does the Form not allow updates? Full rights
are with the Form. When the Form is bound
to tblTrans, updates are allowed.
any help / insight will be appreciated.
Final Prime
Private Sub Form_Load()
Set r = New ADODB.Recordset
With r
.ActiveConnection = CurrentProject.Connection
.CursorLocation = adUseClient
.CursorType = adOpenDynamic
.LockType = adLockOptimistic
.Source = "SELECT * FROM tblTrans "
.Open
End With
Set Me.Recordset = r
End Sub
+++++++++++++
Why does the Form not allow updates? Full rights
are with the Form. When the Form is bound
to tblTrans, updates are allowed.
any help / insight will be appreciated.
Final Prime