Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select more items from ListBox to show the table with SQL

Status
Not open for further replies.

chuanwang

Technical User
Jul 24, 2002
55
0
0
SE
I am going to set some criteria to display table results. In my database (Microsoft Access) I have a table (tblResults) with the following fields

ID, contents, field1, field2, field3 as shown following

id contents Field1 Field2 Field3

1 C1 A1 B1 D1
2 C2 A2 B2 D2
3 C3 A1 B2 D1
4 C4 A3 B1 D3
5 C5 A2 B3 D2
6 C6 A3 B3 D3
7 C7 A1 B2 D4
8 C8 A4 B3 D3

On the form of Visual Basic I have

1. A DataControl (Data1) with its database property set to my database and its recordsource left blank

2. A Flexgrid (Flex1) with its datasource set to the datacontrol

3. List Box to select items

4. A command button (cmdTable) to do the search and display results

Now I can select two more records from Field1 by using List-box, for example, I can select (A1 and A2), or (A1 and A3) or (A1, A2 and A4) or (A2, A3 and A4) and so on from Field 1. What I want is when I press the command button, the corresponding table will appear. Now the problem is when I press the command button, it does not work. The codes I used is like following
----
Private Sub Command1_Click()
Dim I As Integer, WhereClause As String
Dim mySQL As String
For I = 0 To List1.ListCount - 1
If List1.Selected(I) = True Then
WhereClause = WhereClause & List1.List(I) & " OR "
End If
Next I
If Right(WhereClause, 3) = "OR " Then
WhereClause = Left(WhereClause, (Len(WhereClause) - 3))
End If

mySQL = "SELECT * FROM tblResults WHERE (Field1 = WhereClause)"
Data1.RecordSource = mySQL
Data1.Refresh
End Sub
-----

Could someone help me to check the code or suggest another method to solve this problem


Thanks a lot in advance!
Chuan Wang
Royal Institute of Technology
Stockholm, Sweden
Homepage:
 
I think there are a couple of problems there. The first is that Field1 appears to be a text field. You've got to surround your criteria with either double or single quotation marks. Single quotes are easier.

The other problem is that, as far as I know, you can't say "... WHERE Field1 = 'A1' OR 'A2' OR 'A3'". You've got to say "... WHERE Field1 = 'A1' OR Field1 = 'A2' OR Field1 = 'A3'".
So, while you're looping through the ListBox,

Code:
If List1.Selected(I) = True Then
    WhereClause = WhereClause & "Field1 = '" & List1.List(I) & "' OR "
End If

Then,

Code:
mySQL = "SELECT * FROM tblResults WHERE " & WhereClause
 
Have you tried to use CreateRecordset/OpenRecordset
Like
Data1.Recourdsource = Data1.OpenRecordset(mySQL)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top