Я хочу проверить студента перед генерацией платы в C# с помощью цикла for или цикла foreach.
i want to generate the student fees of current month. before fee fee_generation i want to verify each student . if fee is no generated then i will generate if already generated i will not generate. i
Что я уже пробовал:
foreach (DataGridViewRow row in dataGridshowstdfee.Rows) { DataGridViewCheckBoxCell chk = dataGridshowstdfee>Rows.Cells[0] as DataGridViewCheckBoxCell; if (Convert.ToBoolean(chk.Value) == true) { cc.connect_open(); SqlCommand cmdcheckfee = new SqlCommand("select year, month, class ,section , std_id from sms_fee_generated where year='" + comboBoxyear.Text + "' and month='" + comboBoxmonth.Text + "' and class='" + comboBoxclass.Text + "' and section ='" + comboBoxsec.Text + "' and std_id= '" + dataGridshowstdfee.Rows.Cell[0].tostring+ "' ", cc.con); SqlDataReader drfee = cmdcheckfee.ExecuteReader(); if (drfee.Read()) { MessageBox.Show("In This Month Fee of This Class is Already Generated"); } else { savevoucher(); } } }
OriginalGriff
И что же?
А что вы пробовали?
Где ты застрял?
Какая помощь вам нужна?