Microsoft
Software
Hardware
Network
Question : Access variable field locking
Not sure about my title but this is what I am looking.
I have a field [text0] i want this field lock except when new record is being created. This is a db field and I dont want users to be changing the values.
Answer : Access variable field locking
use the current event of the form
private sub form_current()
if me.newrecord then
me.text0.locked=false
else
me.text0.locked=true
end if
end sub
Random Solutions
How do I move a worksheet from one spreadsheet to another, while keeping all formulas exactly the same (so it doesn't move the file name with it)?
excel rows get cut off
auto log off and close forms if idle problem
Access VBA Code with Excel Object Save As just started generating the Automation Error - The server threw an exception.
Access 2003 SELECT Query from two tables base on date
Installing table relationship via vba... Part 1
How to set up a Parallel card under DOS and Windows
Loop through table and number records
Using SQL for Gridview Paging vs Caching
Personal Macro Workbook Server Location?