I have the following line of code in a VBA global module in my Access database, but I am getting an "Application-defined or object-defined error". Can anyone help me out?
Forms!frmTestReport.chkScanned.Value = TestReport_Query.fields("Scanned")
It looks like TestReport_Query.fields("Scanned") is returning a false value, so I'm not sure why it won't set the value of the checkbox on my form. Help!!
Forms!frmTestReport.chkScanned.Value = TestReport_Query.fields("Scanned")
It looks like TestReport_Query.fields("Scanned") is returning a false value, so I'm not sure why it won't set the value of the checkbox on my form. Help!!