ChrisO
Registered User.
- Local time
- Today, 15:33
- Joined
- Apr 30, 2003
- Messages
- 3,202
Well we have just seen that when we drop the column the bound column is returned.
That has been my understanding.
In the mean time, since you have A2010 and the message box returns the ID column, have you tried dropping the column and testing again.
Sometimes what can happen is that changing: -
Me.lstDayShift
to: -
Me.lstDayShift.Column(2)
even though they refer to the same thing, actually only forces a recompile.
So people may think the fix was the fix but in fact it was the recompile that did it.
Therefore changing from: -
Me.lstDayShift.Column(2)
back to: -
Me.lstDayShift
may also fix the problem, and for the same reason…the recompile.
But there may still be something strange going on here that I can’t see.
Regards,
Chris.
That has been my understanding.
In the mean time, since you have A2010 and the message box returns the ID column, have you tried dropping the column and testing again.
Sometimes what can happen is that changing: -
Me.lstDayShift
to: -
Me.lstDayShift.Column(2)
even though they refer to the same thing, actually only forces a recompile.
So people may think the fix was the fix but in fact it was the recompile that did it.
Therefore changing from: -
Me.lstDayShift.Column(2)
back to: -
Me.lstDayShift
may also fix the problem, and for the same reason…the recompile.
But there may still be something strange going on here that I can’t see.
Regards,
Chris.