New entries not appearing in drop down list

david.paton

Registered User.
Local time
Today, 12:03
Joined
Jun 26, 2013
Messages
338
I am now trying assign Case managers to children and the extra case managers I entered are not appearing in my dropdown list in frmChild, what do I need to do to get them to appear?
 

Attachments

On the after update event of the form:

Private sub form_afterupdate()
' ckk if frmchild is open
If syscmd(acSysCmdGetObjectState, acForm, "frmChild") <> 0 then
Forms!frmChild.Recalc
' or
' forms!frmChild.comboname.requery
End if
End sub
 
Wouldn't a simple

Code:
Private Sub ComboName_GotFocus()
 Me.ComboName.Requery
End Sub
work?

Linq ;0)>
 
i also tried requery on the got focus event but that wouldn't work either. I thought something that simple would work but there must be some underlying issue that is stopping it working.
 
I think it is because I have added in the query builder, a count of CMChildCMID, to get the case load but I think that is only showing entries that have those case managers that appear in that joining table. Can I still get a count of the case load, but also have all the case managers appear?
 
I have an idea, how do I add a text box or something similar next to a drop down list that shows all the case managers, that has a count of CMChildCMID from the table tblCMChild?
 

Users who are viewing this thread

Back
Top Bottom