R RustyRick Registered User. Local time Today, 06:25 Joined Jan 31, 2013 Messages 123 Apr 17, 2013 #1 How can I prevent my staff from entering an un-bound control box calculation?
C CJ_London Super Moderator Staff member Local time Today, 14:25 Joined Feb 19, 2013 Messages 17,817 Apr 17, 2013 #2 set the enabled property to false and/or the locked property to true. If locked the user can click on the field but not enter anything. Alternatively hide it - set the visible property to false
set the enabled property to false and/or the locked property to true. If locked the user can click on the field but not enter anything. Alternatively hide it - set the visible property to false
R RustyRick Registered User. Local time Today, 06:25 Joined Jan 31, 2013 Messages 123 Apr 17, 2013 #3 Thanks CJ - I need it visible, so I'll try the other methods.