Sep 10, 2002 #1 Marryp Technical User May 28, 2001 129 CA Hi there! How can I clear the item data from a Listbox? Thanks.
Sep 10, 2002 #2 rewdee Programmer Aug 17, 2001 295 US a quick and dirty method is simply changing the rowsource property as : Code: with me.lstbxSomething .RowSource="" .Requery end with Hope it helps, Rewdee Upvote 0 Downvote
a quick and dirty method is simply changing the rowsource property as : Code: with me.lstbxSomething .RowSource="" .Requery end with Hope it helps, Rewdee
Sep 10, 2002 Thread starter #3 Marryp Technical User May 28, 2001 129 CA The requery will not work because I have a rowsource coded in VBA and the where clause of the sql comes from the txtbox criteria. I would like to be able to clear the txtbox and the listbox. Upvote 0 Downvote
The requery will not work because I have a rowsource coded in VBA and the where clause of the sql comes from the txtbox criteria. I would like to be able to clear the txtbox and the listbox.