Hi,
since assigned "acFormReadOnly ", my code supposes to allow user to only "read the form", but when I test the code, I can type and click on any of the fields on the form. What I really want the code to do is not allow user to be able to click or type on any of the fields, on the form. Any idea? please help.
thanks!
since assigned "acFormReadOnly ", my code supposes to allow user to only "read the form", but when I test the code, I can type and click on any of the fields on the form. What I really want the code to do is not allow user to be able to click or type on any of the fields, on the form. Any idea? please help.
Code:
Dim db As Database
Dim rst As Recordset
Dim stLinkCriteria As String
Set db = CurrentDb
Set rst = db.OpenRecordset("tblReview", dbOpenDynaset)
rst.FindFirst "[ID] = " & Me![txtRECID] & ""
stLinkCriteria = "[ID]=" & Me![txtRECID]
DoCmd.OpenForm "frmReview", , , stLinkCriteria, acFormReadOnly
Comment