Access 2010 データベースで C# VS 2010 を使用していますが、選択した DropDownList ComboBox に基づいてリスト ボックスを設定しようとすると、null エラー (オブジェクト参照がオブジェクトのインスタンスに設定されていません) が発生し続けます。たとえば、ユーザーは西部劇のコンボボックスで映画のジャンルを選択します。リスト ボックスには、そのジャンルのタイトルが表示されます。
シンプルな使い方で回避してみました
ComboBox c = New ComboBox();
c = comboBox1;
しかし、私のリストボックスには何も入力されません。クエリでジャンルを西洋に手動で設定できますが、大規模なケースのシナリオに適用できるように、その方法を使用したくありません。
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);
}
}