hi
i have a simple query that will select from 2 tables
how can i display the result in list box
what i did is
but in the listbox i see only the firs column in the select statement
how can i display all columns
thx
i have a simple query that will select from 2 tables
how can i display the result in list box
what i did is
Code:
Private Sub SearchB_Click()
Dim qry As String
qry ="Select Student.name , Student.address , Course.name , Course.proff
From Student , Course Where Student.id = Course.studentid"
mylistBox.RowSource = qry
End Sub
but in the listbox i see only the firs column in the select statement
how can i display all columns
thx