One way to do this is to leave the second list box's ControlSource property blank and populate its value immediately after requerying the first list box.
In your case, all bound form objects (including the form itself) are requeried when you open the form. In the OnLoad form event, try assigning the value of the property to some data source.
Example:
Private Sub Form_Load()
Me.List0.ControlSource = "somedatasource"
Me.List0.Requery
DoEvents
End Sub
Jim Kraxberger
Developing Access solutions since 1995
jkraxberger@scp4me.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.