Hi,
If there are any option to make read only for single column in a table.
ID Name Country
324 M USA
768 A UK
079 F Canada
I want to Make 'ID' as uneditable column.
Thank u for time spending int his post
Hi,
If there are any option to make read only for single column in a table.
ID Name Country
324 M USA
768 A UK
079 F Canada
I want to Make 'ID' as uneditable column.
Thank u for time spending int his post
Cannot do that in table. Textbox on form has properties Locked, Enabled, Visible. Set any or all appropriately.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
HI june7,
Thank u for ur reply...
What My requirement is?
I'm having two type of user.
Admin and User
i have restrict Some columns from User.
for ex: 'ID' column show only for Admin and not for User.
Thank u..
Have user login to db (or get their id from network login) and then retrieve their authorization category from users table. Use VBA code to set the textboxes on form as Visible or not Visible depending on authorization. Or open different forms for each user category.
You have a login interface in the db? Login functionality is frequent topic in forum.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Hi,
Thank u for ur reply..........i will try