标题:[求助]急!如何combobox中选中的内容作为查询条件查询阿?
取消只看楼主
dfadsf
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-5-30
 问题点数:0 回复次数:2 
[求助]急!如何combobox中选中的内容作为查询条件查询阿?

各位大虾 帮帮忙了
程序如下:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim sql As String = "SELECT * FROM 图书信息表 where "
If ComboBox1.SelectedIndex > 0 Then
str += ComboBox1.Items(ComboBox1.SelectedIndex)
End If
If TextBox1.Text > "" Then
str += " like'" & TextBox1.Text & "%';"""

Try
Me.SqlConnection1.Open()
Me.SqlDataAdapter1.SelectCommand = New SqlClient.SqlCommand(sql + str, SqlConnection1)
Me.DataSet11.Clear()
Me.SqlDataAdapter1.Fill(DataSet11, "图书信息表")
DataGrid1.DataSource() = Me.DataSet11.Tables("图书信息表")

Catch ex As Exception

End Try
运行了一下 没有错误 可是没办法执行查询阿
我 原来是想用combobox1中选中 的内容查的
可是。。。。。

搜索更多相关主题的帖子: combobox 条件 str ByVal 
2006-06-01 18:58
dfadsf
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-5-30
得分:0 
我用了字符串连接了阿  sql + str
2006-06-01 22:02
dfadsf
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-5-30
得分:0 

多谢!
2006-06-02 12:08



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-69102-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018101 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved