Try
con.Open()
dt2 = New DataTable
With cmd
.Connection = con
.CommandText = "Select Lname,Fname,Mname,Gender,Grade,Saint,SY from g7 where saint='" & cinfosection.Text & " and Lname like '%" & TextBox1.Text & "%''
End With
da.SelectCommand = cmd
da.Fill(dt2)
dgclassinfo.DataSource = dt2
Catch ex As Exception
MsgBox(ex.Message)
End Try
da.Dispose()
con.Close()
我正在使用上面的代码在dgv中搜索数据,其中每次用户输入每个字符时结果都会更改(textbox.Textchanged)。问题是我希望用户使用组合框(dropdownlist)中的数据进行搜索。每当用户从组合框中选择不同的值时,另一个结果将显示在dgv INSTANTLY
中Anyhelp表示赞赏