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
SharePoint Services Site Image
Disappearing Appointments in Exchange 2007, Outlook 2007 mailboxes
Using Rich Text Box
SQL criteria applied to nested queries
Data Validation with VBA without use of worksheet cells
HOW TO REMOVE ROUTING AND REMOTE ACCESS
Progress TCP Ports Windows 2003
Where are email attachments stored in windows mobile 6.5?
Screen resolution is off in Internet explorer.
Update Pivot Table Based On Cell Reference - Error Handling