hi, what i need to do is to get information from 2 tables and show it to the listview. for example, i want to get the surname, first name and middle name from the student_info table and the Payment_Status from the accounting_system. i don't want to show the information that is already on the accounting system that has 'Paid' on the Payment_Status. Hope you can help me
my friend gave me this code
strsql = "select Surname, First_Name, Middle_Name from accounting_system"
MsgBox("account")
strsql2 = "select * from student_info where Surname, First_Name, Middle_Name not in ('" & strsql & "')"
MsgBox("student")
but the listview only showed the first data on the database