I have a very simple access 2013 project that contains a form with a text box object named "ShippingLot". I wanted to include a picture, but the web site would not allow me to do so. You will just have to take my word it is there.
There are three other objects named "IdKey", PartNumber" and "Lot Number" respectively. You will have to take my word they are there. These are all unbound objects.
The following code says "Method or Data member not found" when I compile it. Me.ShippingLot is highlighted in blue.
Private Sub LotNumber_AfterUpdate()
Me.IDKey = Me.PartNumber & "-" & Me.LotNumber & "-" & Me.ShippingLot
End Sub
Any ideas?
I have some more information. If I rem out the code rafter me.lotnumber, it then fails on me.lotnumber and so forth.
Its like it cannot recognize that this form has these objects on it. Even though the type ahead feature (Correct name?) finds these object names on the form.