4 minutes
ago: Please note that the webserver will soon get its weekly reboot at 4:00 am Eastern Time. You may continue to use the site as normal, but you will be logged off at that time. You should be able to log right back on immediately, however. If you are in the process of placing an order, please make sure to complete it as quickly as possible, or come back after the reboot. Thank you. Sorry for any inconvenience.
Dismiss
I've stacked these to show each of them, layer these ontop of each other.
Now when the user selects the ComboBox Refresh it so the Query updates.
VBA
Private Sub cboGrade_GotFocus()
Me.Refresh
End Sub
When a Grade has been chosen from the ComboBox set the Grade TextBox to the value of the ComboBox, then Save the Record and then set the Focus of the other TextBox so that it comes to the forefront.
Private Sub cboGrade_AfterUpdate()
Grade = cboGrade '.Column(1)
Me.Dirty = False 'DoCmd.RunCommand acCmdSaveRecord
txtGrade.SetFocus
End Sub
This will now use the DLOOKUP to get value and display it. It will appear as if the combo is showing it but it isn't.