帮助 - VBA - 搜索功能 - 数据库MS访问

时间:2011-04-17 09:00:07

标签: ms-access vba

  • 数据库结构:

UserName 字符串

位置字符串

价格数字

  • 要求:

    我有列表框,其中包含一些项目。用户将在列表框中随机选择10个(在将MULTISELECT更改为2fmMultiselect属性后)。我会有搜索按钮。选择并单击“搜索”后,必须计算并显示所选项目的总价格。

我的搜索代码(感谢Alex先生)

enter code here
Private Sub CommandButton4_Click()

Dim Cn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim sName As String

Set Cn = New ADODB.Connection
Cn.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\test2.accdb;Persist Security Info=False"
Cn.ConnectionTimeout = 40
Cn.Open

Set rs = New ADODB.Recordset

sName = Replace$(TextBox1.Text, "'", "''")
rs.Open "Select * from SampleTable where UserName = '" & sName & "'", Cn, adOpenForwardOnly, adLockReadOnly, adCmdText

If (rs.EOF) Then
    MsgBox "no match"
Else
    TextBox3.Text = rs("UserName") & " " & rs("Location")


    rs.Close

End If

Set rs = Nothing
Cn.Close
Set Cn = Nothing


End Sub

该代码只是在文本框中搜索和显示。

现在,我需要总计用户从列表框中选择的所有UserName字段的价格。

1 个答案:

答案 0 :(得分:1)

尝试此操作,但请确保列表框中的绑定列是表格的ID字段。

Private Function SelectedListString(lstSelected As Access.ListBox) As String
'Loop though a list and get the IDs of all the selected items
'Assumes the bound column is the contains the ID field
    Dim sList As String
    Dim vSelected As Variant        
    With lstSelected
        For Each vSelected In .ItemsSelected
            sList = sList & .ItemData(vSelected) & ","
        Next
    End With
    If sList <> "" Then sList = Left(sList, Len(sList) - 1) 'trim trailing coma
    SelectedListString = sList
End Function

您可以在SQL

中的IN语句中使用结果
Dim sSql As String
If myListbox.ItemsSelected.Count > 0 Then
    sSql = "SELECT * FROM table WHERE IDField IN (" & SelectedListString(myListbox) & ")"
End If