Dim SELMonthPeriod As New OleDb.OleDbCommand("SELECT TimeIn,TimeOut FROM (Time_IN_OUT) WHERE EmpNo = '" & ListEmp.SelectedItem & "' and ShiftMonth = '" & ComboPeriod.SelectedItem & "'", con)
Dim READMonthPeriod As OleDb.OleDbDataReader = SELMonthPeriod.ExecuteReader()

having this code.. can you me how can i show the data selected in ListView??
Thanks.