I Have Listview with All transaction
with column InvoiceNo Date Customer Total
Now I want to filter only month transation only month with combobox selection and one textbox year
Me.cboMonth.Items.Add("1")
Me.cboMonth.Items.Add("2")
Me.cboMonth.Items.Add("3")
...........
Me.cboDate.Items.Add("12")
Me.cboDate.SelectedText = 1
my column date display mm/dd/yyyy
How can I selection cboMonth to filter only month transaction
Please help...
Thanks