In Northwind DB frmProductDetail, I try to make the user unable to Edit the data by putting me.allowEdits = False when the form is open
Private Sub Form_Open(Cancel As Integer)
Me.AllowEdits = False
End Sub
This make the combo box cboFindProduct unselectable in form view. What is the best work around so the user can select a field from this combo box but the form still restrict the user from editing?
Private Sub Form_Open(Cancel As Integer)
Me.AllowEdits = False
End Sub
This make the combo box cboFindProduct unselectable in form view. What is the best work around so the user can select a field from this combo box but the form still restrict the user from editing?