nschroeder
nschroeder
- Local time
- Today, 16:35
- Joined
- Jan 8, 2007
- Messages
- 186
I have a form with code in the Open event that selects the current username as the default value in a combo box from a list of usernames. It's an Access 2003 database, and it works fine for 2003 users, but for 2007/2010 users the selection is blank. In debugger, it selects the value correctly, but still is blank when the form appears. Any ideas on why it's broke in the later versions?
Here's the applicable Open event code:
Here's the applicable Open event code:
Code:
lbAssignee.SetFocus
lbAssignee.Value = CurUserName()