Hi All...
I have a tabular form, shows names of users with their passwords.
If UserName in any record is Admin, I want to disable this record only while other records remain enabled.
I tried:
If Me.UserName = "Admin" Then
Me.UserName.Enable = False
Else
.....
End If
But it disabled all the UserNames for all the records.
Is it possible to disable one record only in a tabular form..
Many thanks
I have a tabular form, shows names of users with their passwords.
If UserName in any record is Admin, I want to disable this record only while other records remain enabled.
I tried:
If Me.UserName = "Admin" Then
Me.UserName.Enable = False
Else
.....
End If
But it disabled all the UserNames for all the records.
Is it possible to disable one record only in a tabular form..
Many thanks