日期:2014-05-17 浏览次数:20895 次
private void Form2_Load(object sender, EventArgs e)
{
AutoCompleteStringCollection acsc = new AutoCompleteStringCollection();
DataSet ds=getList();
foreach (DataRow drv in ds.Tables[0].Rows)
{
for(int i=0;i<ds.Tables[0].Columns.Count;i++)
{
acsc.Add(drv[0].ToString());
}
}
acsc.Add("asdjhkj");
acsc.Add("2412312");
acsc.Add("asdaasdkj");
acsc.Add("78fsdfhj");
acsc.Add("0if0sdfn");
acsc.Add("67dasgdh");
acsc.Add("0dasdjasd");
acsc.Add("23ashdb");
this.textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;