I'm very new to Access/VBA, so I apologize if this is a very stupid question, but I can't find the answer anywhere. I have a table to which I've added a column, and Me is not picking up on the new column. When I try to do, say,
MsgBox Me.NewColumn
it just gives me an error message saying "Method or data member not found". I also have this problem with a renamed column; Me.NewName doesn't work, but oddly enough Me.OldName still does (and shouldn't, since OldName doesn't exist anymore). Me works with all the other columns in the table; in fact, I added a column earlier today and Me picks it up just fine. Is there something basic I'm missing, or something I can do to force Me to recognize the new/renamed columns?