SELECT Products.ProductID, Products.Product, Products.StoreID FROM Products;
Where StoreID='ABC Road'
Was there no explanation where you got the code? The intent appears to be that the portion of the SQL prior to WHERE is put in the tag property of the listbox.
First copy the rowsource string into the tag property of the listbox.
By the way, the products table should be storing the ID of the store (1) not the text value (ABC Road). That's basically the point of the ID field; it's what you use in other tables.