Now I am going to add a triple state checkbox to the form.
I have added a new text field that can be nullable, and bound a new “TestCheckTripleState” checkbox to it.
The reason for this is that a “Yes/No” Access field cannot be null. It can only be true or false which causes problems trying to use the triple state which requires a true / false / null value set. Using a simple text field allows the values 0, -1, and null to be entered which is what the triple state checkbox wants to do.
I actually expect after having added the table field and form field, that a simple test might just pass. Let’s try it:
Now, this test is not passing. It seems there are issues when comparing the values in the “InputMatchResult” function on the NewMatches line. The function looks like this:
So I will debug this in another session.