问题描述
ComboBox控件输入文本,显示下拉列表根据输入的文本在数据库模糊查找列表显示出查找的值。求大神解答给代码,小弟万分感谢。
解决方案
解决方案二:
http://bbs.csdn.net/topics/300154879
解决方案三:
onchange事件中,根据内容区select数据集,然后遍历数据集,添加到items
解决方案四:
选择a,返回bprivatevoidcomboBox1_SelectedIndexChanged(objectsender,EventArgse){stringSql="selectbfromtablewherea='"+comboBox1.SelectedItem+"''";stringconnectionString="DataSource=192.168.1.3;InitialCatalog=data;UserID=sa;password=sa;IntegratedSecurity=False";stringqueryString=Sql;using(SqlConnectionconnection=newSqlConnection(connectionString)){SqlCommandcommand=newSqlCommand(queryString,connection);connection.Open();SqlDataReaderreader=command.ExecuteReader();try{while(reader.Read()){textBox1.Text=reader[0].ToString();}}finally{command.Dispose();connection.Close();}}}
解决方案五:
select*fromphonetablewherenamelike'%"+txtBoxID.text+"%'
解决方案六:
http://bbs.csdn.net/topics/390324804像百度那样的