这是我的目标方案,
我的问题是,有没有更好的方法在组合项中分配特定的sql语句?
If ComboBox1.Text = “Desktop” Then
'query = "Select * from Desktop"
call DesktopList
Else If ComboBox1.Text = “Laptop”
'query = "Select * from Laptop"
call LaptopList
End If
答案 0 :(得分:0)
在变量中获取 ComboBox1 的值,并在查询中调用该变量。
像 ComboSelectValue = ComboBox1.Text
之类的东西然后您可以在查询中使用它
query = select * from ComboSelectValue