AttaUrRahman Ответов: 1

Как мне кодировать переключатель и флажок


Я написал этот код, но он не работает. я не знаю кода для радиокнопок и флажков.

private void buttonprint_Click(object sender, EventArgs e)
        {
            connection.Open();
            SqlCommand command = new SqlCommand();
            command.Connection = connection;
            command.CommandText = "insert into birth values(@applicanturdu,@applicantname, @applicantnic,@childurduname,@childname,@rishta,@relation,@gender,@cast,@sibling,
@religion,@walidname,@fathername,@fathernic,@walidaname,@mothername,@mothernic,@dadaname,@grandfather,@dadanic,@birthzilla,@birthdistrict,@birthdate,@vaccinate,@birthplace,@doctor,@disability,@education,@village,@uc,@vc,@tehsil,@district)";
            command.Parameters.Add(new SqlParameter("@applicanturdu", textBoxapplicanturdu.Text));
            command.Parameters.Add(new SqlParameter("@applicantname", textBoxbachaname.Text));
            command.Parameters.Add(new SqlParameter("@applicantnic", textBoxapplicantnic.Text));
            command.Parameters.Add(new SqlParameter("@childurduname", textBoxbachaname.Text));
            command.Parameters.Add(new SqlParameter("@childname", textBoxchildname.Text));
            command.Parameters.Add(new SqlParameter("@rishta", textBoxrishta.Text));
            command.Parameters.Add(new SqlParameter("@relation" , textBoxrelation.Text));
            command.Parameters.Add(new SqlParameter("@cast", textBoxcast.Text));
            command.Parameters.Add(new SqlParameter("@sibling" , textBoxsibling.Text));
            command.Parameters.Add(new SqlParameter("@religion" , textBoxreligion.Text));
            command.Parameters.Add(new SqlParameter("@walidname" , textBoxwalidname.Text));
            command.Parameters.Add(new SqlParameter("@fathername" , textBoxfathername.Text));
            command.Parameters.Add(new SqlParameter("@fathernic" , textBoxfathernic.Text));
            command.Parameters.Add(new SqlParameter("@walidaname" , textBoxwalidaname.Text));
            command.Parameters.Add(new SqlParameter("@mothername" , textBoxmothername.Text));
            command.Parameters.Add(new SqlParameter("@mothernic" , textBoxmothernic.Text));
            command.Parameters.Add(new SqlParameter("@dadaname", textBoxdadaname.Text));
            command.Parameters.Add(new SqlParameter("@grandfather" ,textBoxgrandname.Text));
            command.Parameters.Add(new SqlParameter("@dadanic" , textBoxgrandcnic.Text));
            command.Parameters.Add(new SqlParameter("@birthzilla" , textBoxbirthdistricturdu.Text));
            command.Parameters.Add(new SqlParameter("@birthdistrict" , textBoxdistrict.Text));
            command.Parameters.Add(new SqlParameter("@birthdate", dateTimePickerdob.Value.ToString()));
            command.Parameters.Add(new SqlParameter("@doctor" , textBoxdoctor.Text));
            command.Parameters.Add(new SqlParameter("@education", textBoxeducation.Text));
            command.Parameters.Add(new SqlParameter("@village", textBoxcity.Text));
            command.Parameters.Add(new SqlParameter("@uc" , comboBoxuc.GetItemText(comboBoxuc.SelectedItem))); 
            command.Parameters.Add(new SqlParameter("@vc" , comboBoxvc.GetItemText(comboBoxvc.SelectedItem)));
            command.Parameters.Add(new SqlParameter("@tehsil" , textBoxtehsil.Text));
            command.Parameters.Add(new SqlParameter("@district" ,textBoxdistrict.Text));
            command.ExecuteNonQuery();
            connection.Close();
            MessageBox.Show(textBoxapplicanturdu.Text, "This Person is Added", MessageBoxButtons.OK, MessageBoxIcon.Information);


Что я уже пробовал:

я пробовал это и в Google, но не могу найти подходящего решения.

Maciej Los

Можете ли вы быть более конкретным и предоставить более подробную информацию о вашей проблеме?
Обратите внимание, что мы не можем читать в вашем уме или непосредственно с вашего экрана.

AttaUrRahman

Сэр, я не могу написать код для RadioButton и CheckBox. Я написал этот код для insert Query, чтобы отправить данные в базу данных без RadioButton и CheckBox.

1 Ответов

Рейтинг:
1

Richard MacCutchan

Класс RadioButton (Система.Окна.Формы) | Microsoft Docs[^], Класс Чекбокса (System.Окна.Формы) | Microsoft Docs[^].

Кроме того, не храните даты в виде строк, используйте правильные типы SQL Date или DateTime.