I'm using the
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ApplicantID] = " & Me![cboFindPerson]
Me.Bookmark = Me.RecordsetClone.Bookmark
Me.Refresh
Code in a afterupdate event of a combo.
This works ok during normal behaviour, unfortunatly I need a read only version of the form, so I set allow edits to false, now the cbo doesn't work
Is there a way of getting the combo box navigation to work?
Or more generally whats the best way to make parts of the form read only and leave others.
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ApplicantID] = " & Me![cboFindPerson]
Me.Bookmark = Me.RecordsetClone.Bookmark
Me.Refresh
Code in a afterupdate event of a combo.
This works ok during normal behaviour, unfortunatly I need a read only version of the form, so I set allow edits to false, now the cbo doesn't work
Is there a way of getting the combo box navigation to work?
Or more generally whats the best way to make parts of the form read only and leave others.