first off, spaces in object names are a bad idea.
second, locked is also an object property, you should change the name of this object.
third, on the On_Update event for your checkbox, simply set the two fields to the inverse of the check box:
incDue.Enabled = not(chkLocked)...