I have an unbound list box that I am using as a selection point for a data input form. On the left of the main form is the list box with a list of names and on the right is a subform which holds the relevant data.
When I select a name in the list box the subform updates but the list box then flickers as though it has been requeried. Is there any suggestions on how to stop the flickering.
The list box is unbound and the code behind it is
Thanks as always for any suggestions
When I select a name in the list box the subform updates but the list box then flickers as though it has been requeried. Is there any suggestions on how to stop the flickering.
The list box is unbound and the code behind it is
Code:
Private Sub QuickSearch_Click()
Application.Echo False
' clear any search data
Me.Search2 = ""
Me.Search3 = ""
' column numbering starts from 0
Me.Search2 = Me.QuickSearch.Column(1)
Me.frmIfFertAppln.Requery
Application.Echo True
End Sub
Thanks as always for any suggestions