MajP
You've got your good things, and you've got mine.
- Local time
- Today, 01:31
- Joined
- May 21, 2018
- Messages
- 8,887
I am not sure if this is your only problem but that syntax is incorrect.
the dot "." is used before a property and SignSeal is not a property of the recordset.
Either
me.Recordset.Fields("SignSeal")
or
Me.Recordset!SignSeal
If you want to understand why ! works, see discussion
When you add a field to form it gets added automatically to a controls collection even without a visible control. Now it is a property of a form or report.
This is my you can do
Me.someField
but not
Me.recordset.somefield
the dot "." is used before a property and SignSeal is not a property of the recordset.
Either
me.Recordset.Fields("SignSeal")
or
Me.Recordset!SignSeal
If you want to understand why ! works, see discussion
Bang Vs Dot, Me, and Default Properties
This is a cleaned up version of a long thread with several sidebar conversations originally located at the link at the bottom of this thread. There is a lot of confusion about the use of Me. or Me! and Bang vs Dot in general. A lot of the discussion on the Internet is wrong or incomplete. The...
www.access-programmers.co.uk
When you add a field to form it gets added automatically to a controls collection even without a visible control. Now it is a property of a form or report.
This is my you can do
Me.someField
but not
Me.recordset.somefield