VBA,MS Access-设置要查询的文本框

时间:2019-03-13 09:34:28

标签: sql vba ms-access querying

我有一个表单,一个组合框(下拉菜单)和一个文本框。

从组合框中选择一个特定值后,我希望文本框查询表中的值。

这是我的主意,但不起作用:

Private Sub Combobox1_Click()
If Me.Combobox1.Value = "London" Then

    Dim SQL As String

    SQL = "SELECT tabel_prices.[London]" _
        & "FROM tabel_prices "

    Me.TextBox1.Value = SQL

End If
End Sub

0 个答案:

没有答案