私は数学クラスをSQLに追加するプログラムを書いていますが、一部の外部キーにコンボボックスを使用して、参照テーブル内の特定の項目からのみ選択できるようにしています(たとえば、クラス名は別のテーブルから取得されます)すべてのクラス名が入っています。しかし、何らかの理由で、combobox.selectedvalue 関数を使用すると、classnameid が正しい ID を与えません。ID として奇妙な -14 と -25 を与え続けますが、これは間違っています。助けてください。これが私のコードです
private void btnAddClass_Click(object sender, EventArgs e)
{
int iclassroomID = Convert.ToInt16(cmbClassRoomName.SelectedValue);
int iclassTypeID = Convert.ToInt16(cmbClassType.SelectedValue);
int iHours = Convert.ToInt16(cmbHours.SelectedItem);
int iMins = Convert.ToInt16(cmbMinutes.SelectedItem);
string sClassLength = txtLength.Text;
DateTime dtClassdate;
dtClassdate = dateTimePicker1.Value;
DateTime myClassDateandTime = dtClassdate.Date.AddHours(iHours).AddMinutes(iMins);
txtOutput.Text = Convert.ToString(iclassroomID);
int selectedyear = this.dateTimePicker1.Value.Year;
int selectedmonth = this.dateTimePicker1.Value.Month;
int selectedday = this.dateTimePicker1.Value.Day;
int thisyear = Convert.ToInt16(DateTime.Now.Year);
int thismonth = Convert.ToInt16(DateTime.Now.Month);
int thisday = Convert.ToInt16(DateTime.Now.Day);
if (cmbSchool.SelectedIndex == 0)
{
MessageBox.Show("Please Select A School");
}
else if (cmbClassRoomName.SelectedIndex == 0)
{
MessageBox.Show("Please Select A Classroom");
}
else if (cmbClassType.SelectedIndex == 0)
{
MessageBox.Show("Please Select A Class Type");
}
else if (cmbHours.SelectedIndex == 0)
{
MessageBox.Show("Please Select the hour for the starting time of the class");
}
else if (cmbMinutes.SelectedIndex == 0)
{
MessageBox.Show("Please Select the minute for the starting time of the class");
}
else if (selectedyear < thisyear)
{
MessageBox.Show("Please Select a date forward from today");
}
else if (selectedmonth < thismonth)
{
MessageBox.Show("Please Select a date forward from today");
}
else if (selectedday < thisday)
{
MessageBox.Show("Please Select a date forward from today");
}
else if (txtLength.Text == "")
{
MessageBox.Show("Please enter the class length");
}
else
{
classTableAdapter.AddClass(iclassroomID, iclassTypeID, myClassDateandTime, sClassLength);
this.Validate();
this.classBindingSource.EndEdit();
this.tableAdapterManager.UpdateAll(this.geared4MathDataSet);
MessageBox.Show("Class Added");
this.Close();
}
}
private void cmbSchool_SelectedIndexChanged(object sender, EventArgs e)
{
int iclassroomname = Convert.ToInt16(cmbSchool.SelectedValue);
try
{
this.classRoomTableAdapter.FillBySchool(this.geared4MathDataSet.ClassRoom, iclassroomname);
lblClassroomName.Visible = true;
cmbClassRoomName.Visible = true;
}
catch (System.Exception ex)
{
System.Windows.Forms.MessageBox.Show(ex.Message);
}
}
http://imgur.com/FRl2Uew,0slWYAq 私のフォームがあります。そのリンクには2つのアップロードがあります。2ページ目をクリックすると2ページ目が表示されます