T
thefonz37
If I have a form based off a table and I want to allow users to edit some of
those records, but I don't want them to be able to edit other records (I'm
displaying them in continuous forms mode), how can I "lock" those records in
the table? Is this even possible?
I have this code:
If [timestamp] < #6/8/2009# Then
txtStartTime.Enabled = False
txtEndTime.Enabled = False
cboExceptionType.Enabled = False
End If
Whenever it hits one record that returns a true on the if condition, it
disables all instances of the controls.
those records, but I don't want them to be able to edit other records (I'm
displaying them in continuous forms mode), how can I "lock" those records in
the table? Is this even possible?
I have this code:
If [timestamp] < #6/8/2009# Then
txtStartTime.Enabled = False
txtEndTime.Enabled = False
cboExceptionType.Enabled = False
End If
Whenever it hits one record that returns a true on the if condition, it
disables all instances of the controls.