Originally posted by NeoPa
What it means is to tell me about
Me.Sport1 in more detail. So far we know that it's something on your Form but we don't have anything specific. It matches CactusData's suggestion in posts #4 & #8 but not your original question so I'm looking for you to confirm that it's actually a TextBox Control that you're using on your Form to represent and display data from the [tbl_master].[sport] field described originally.At this point I recommend that you look through the Help topic for Requerying of Controls. It's quite involved and shows when the Control itself is requeried and when it will Requery the whole Form. From this it would seem that, contrary to my earlier statement, while a .Requery of the Control for CactusData's scenario SHOULD work on just the Control, one for my scenario wouldn't.
It may be that my approach wouldn't allow such re-querying of an individual Control. If that's required though, you could populate the values in the Controls using code instead. IE. Instead of using
=RandomVal('Spo rt') etc, leave the ControlSources blank instead and simply set their values when the Form is opened and again whenever you want to trigger a change.
Comment