我正在使用带有Access 2010数据库的C#VS 2010,当我尝试根据所选的DropDownList ComboBox填充列表框时,我不断收到空错误(对象引用未设置为对象的实例) 。例如,用户在Westerns的comboBox中选择一种类型的电影。然后,列表框应填充该类型的标题。
我尝试通过简单的使用
绕过它ComboBox c = New ComboBox();
c = comboBox1;
但是我的列表框不会填充任何内容。我可以在查询中手动将我的类型设置为Western,但我不想使用该方法,因此我可以将其应用于大型案例场景。
public partial class Form1 : Form
{
OleDbConnection cn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data source = c:\\users\\Nick\\Desktop\\DatabaseTest.accdb");
public Form1()
{
InitializeComponent();
}
private void Form1_Shown(object sender, EventArgs e)
{
try
{
cn.Open();
}
catch (ObjectDisposedException ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
Application.Exit();
}
OleDbCommand cm = new OleDbCommand("SELECT Genre FROM Genre", cn);
try
{
OleDbDataReader dr = cm.ExecuteReader();
while (dr.Read())
{
comboBox1.Items.Add(dr["Genre"]);
}
dr.Close();
dr.Dispose();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
//private void button1_Click(object sender, EventArgs e)
//{
//}
private void comboBox1_SelectionChangeCommitted(object sender, EventArgs e)
{
OleDbCommand cf = new OleDbCommand("SELECT Title FROM Movies WHERE mGenreID=@Genre", cn);
cf.Parameters.Add("@Genre", comboBox.SelectedValue.ToString());
try
{
OleDbDataReader dr = cf.ExecuteReader();
while (dr.Read())
{
listBox1.Items.Add(dr["Title"]);
}
dr.Close();
dr.Dispose();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
答案 0 :(得分:0)
您要向comboBox1
添加项目,但是从comboBox
读取值。请注意缺少1
。