循环浏览组合框并与数据库中的数据进行比较
本文关键字:数据 比较 数据库 组合 浏览 循环 | 更新日期: 2023-09-27 18:24:47
我尝试了几种方法来循环浏览组合框,但它不起作用。。。
for (Int16 i = 0; cbxrecipe.Items.Count - 2 >= i; i++)
{
if (cbxrecipe(i).Items.ToString() != Reader_recipe1.GetValue(0).ToString())`
{
//update the combobox;
}
}
意味着我需要循环浏览组合框,检查组合框内的项目是否与数据库中的数据相同,如果相同,则不会更新,否则,组合框将立即出现新项目。。。
感谢您的帮助=)
您的代码中有一个错误。
试试这个:
for (Int16 i = 0; cbxrecipe.Items.Count - 2 >= i; i++)
{
if (cbxrecipe.Items[i].ToString() != Reader_recipe1.GetValue(0).ToString())
{
//update the combobox;
}
}