Hi,
How can the field "User Level" on my Login form auto populate when the User Name is selected.
Hold down shift key when opening database.
Thanks,
Bill
Hi,
How can the field "User Level" on my Login form auto populate when the User Name is selected.
Hold down shift key when opening database.
Thanks,
Bill
Since employee is a combobox, have its RowSource be a query that includes SecurityLevels table.
ColumnCount: 3
ColumnWidths: 1";0";0"
Then UserLevel locked textbox (not a combobox) can reference combobox column:
=[cboUserName].Column(2)
Also set its TabStop to No.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Thank you so much June7 that works perfectly!
You are amazing!