Locking form.

Magnus1982

Registered User.
Local time
Today, 14:58
Joined
Apr 29, 2017
Messages
41
Hi,

In my form I have 2 data fields where data is setting up automatically after I write down any data in related field (it is something like actualization ) date. I am looking way to lock this 2 field in this form for edit. Any way data is set up automatically then we can turn off edit in this 2 fields in every new page of form.

Help plz
 
in the form OnCurrent event, lock the page depending on the field,
Code:
sub form_OnCurrent()
me.locked = not isnull(txtBox1) and not isnull(txtBox2)
end sub
 

Users who are viewing this thread

Back
Top Bottom