I am using a lisbox in a form to show results depending on unbound textboxes. These textboxes function with on change event procedure
Private Sub txtAM_Change()
Me.txtAMX = Me.txtAM.Text
Me.Listsearch.Requery
End Sub
When form runs it shows 131 records on listbox. When I type on an unbound textbox to show up values from a field the sql statement uses and that has null values the listbox will not populate correctly (showing less records from then on)
Tried with the criteria in the sql statement:
[ΑΜ] Like [txtΑΜX] & "*" Or [txtΑΜX] Is Null
But still problem insists
Maybe code to manipulate null? I need help please
Private Sub txtAM_Change()
Me.txtAMX = Me.txtAM.Text
Me.Listsearch.Requery
End Sub
When form runs it shows 131 records on listbox. When I type on an unbound textbox to show up values from a field the sql statement uses and that has null values the listbox will not populate correctly (showing less records from then on)
Tried with the criteria in the sql statement:
[ΑΜ] Like [txtΑΜX] & "*" Or [txtΑΜX] Is Null
But still problem insists
Maybe code to manipulate null? I need help please