I have what looks like a very straightforward line of VBA code that is really messing with my head.
id = Form_frm2013_Browser.tb_LineItem_ID.value
When my code reaches this point, I get the following error:
Run-time error '2424': The expression you entered has a field, control, or property name that Microsoft Access can't find
I am pretty sure the problem is the lower-case "v" in value. When I use the intellisense code completion, the property "Value" comes up as upper case, but when I press enter, it goes to lower case. Of course manually attempting to change it doesn't work either--it just goes back to lower case.
By the way, tb_LineItem_ID is the name of a text box control.
Any idea what is going on here?