Filter between two dates Programming Software Development by Lek Plepi i have two DatePickers on form and I want filter between two dates. So when i click search in lsitview display the dates between can anyone tell me how to deal with? Using xml node for birthday update Programming Software Development by johnt68 … would like the name and birthdate to show in a lsitview, listbox, textbox (or whatever works really). Then, if the birthdate… Re: Using xml node for birthday update Programming Software Development by johnt68 … would like the name and birthdate to show in a lsitview, listbox, textbox (or whatever works really). I should have been… Re: Delete item from XML file Programming Software Development by Diamonddrake … the data object reference to the tag object of the lsitview item that way we can find it easy newItem.Tag… Re: How to Add Icons for Items in a ListBox Programming Software Development by Mitja Bonca … use ListView, which is meant for it.8df **Images to lsitview:** If you want to do this in the designer, you… Re: Filter between two dates Programming Software Development by debasisdas You filter the dates from database by using BETWEEN operator. You need to format the dates into your database format before passing the same into the DB for processing. Re: Filter between two dates Programming Software Development by sgt_toasty Also keep in mind that in most instances the between operator selects entries between your two dates AS WELL AS the two dates. So if you were doing between Jan 1st/ 2011 and September 12/2011 both Jan 1st and Sept 12 will be included. Re: Using xml node for birthday update Programming Software Development by kvprajapati I guess you want to create a list of people and display this list whose birth date is equal to DateTimePicker date (day and month). I suggest you to use LINQ to XML to populate `List<Person>`. Here is a working sample : Create a TYPE Person ------------------------------------ public class Person { public string Name {…