Undefined Error, Combo Boxes Won't Select, Access 2007

I'm just wondering if a process is getting locked due to the mouse down event. I know this isn't optimal but does the code work if you put it into a click event of a button (just for testing purposes)?

Well done Bob! That does indeed appear to be the issue. Now, if only there was some way around that....in the meantime, I guess I could add a button - not as pretty, but at least functional.

Thanks!
:)
 
Well done Bob! That does indeed appear to be the issue. Now, if only there was some way around that....in the meantime, I guess I could add a button - not as pretty, but at least functional.

Thanks!
:)
Managing all of the "little things" which can happen when change of Operating system and/or Office version can be daunting. Hopefully you can find a solution to the original scenario but at least you have a potential work around. Glad we could finally get that at least. :)
 
If you separate the following to two lines:
Me.lstMeetingAttendees.Enabled = False: Me.lstMeetingAttendees.RowSource = ""

then comment out Me.lstMeetingAttendees.Enabled = False

and see if it helps. You are disabling a control while in the event for the control you are disabling which may cause the issue.
 

Users who are viewing this thread

Back
Top Bottom