{male = "Чоловічий";} else if (radioButton2.Checked) {male = "Жіночий";}
birth_date = Convert.ToString (this.dateTimePicker1.Text);
receipt = Convert.ToString (this.dateTimePicker2.Text);
doctor = Convert.ToString (comboBox2.Text). Trim (),
for (int k = 0; k
{
medicine = medicine + listBox2.SelectedItems [k]. ToString () + " n";
}
disease = Convert.ToString (richTextBox1.Text). Trim ();
proc = Convert.ToString (comboBox3.Text). Trim ();
if (fio == "") {MessageBox.Show ("Заповніть поле П.І.Б.", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error); return;}
if (male == "" | | male == null) {MessageBox.Show ("Виберіть підлогу", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error); return ;}
if (doctor == "" | | male == null) {MessageBox.Show ("Виберіть лікуючого лікаря", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error); return;}
if (disease == "") {MessageBox.Show ("Опишіть захворювання", "Помилка", MessageBoxButtons.OK, MessageBoxIcon.Error); return;}
mydb = new sqliteclass ();
sSql = @ "insert into card (fio, male, birth_date, receipt, medicine, doctor, disease, proc) values ​​('" + fio + "', '" + male + "','" + birth_date + "','" + receipt + "','" + medicine + "','" + doctor + "','" + disease + "','" + proc + "');";
// Перевірка роботи
if (mydb.iExecuteNonQuery (sPath, sSql, 1) == 0) {
Text = "Помилка запису!";
mydb = null;
return;
} else {
Text = "Запис 1 добавлена!";
textBox1.Text = "";
richTextBox1.Text = "";
// Додаємо в таблицю новий запис при успішному додаванні в базу
i + +;
dataGridView1.Rows.Add (1);
dataGridView1.Rows [i]. Cells [0]. Value = fio.ToString (). Trim ();
dataGridView1.Rows [i]. Cells [1]. Value = male.ToString (). Trim ();
dataGridView1.Rows [i]. Cells [2]. Value = birth_date.ToString ();
dataGridView1.Rows [i]. Cells [3]. Value = receipt.ToString (). Trim (),
dataGridView1.Rows [i]. Cells [4]. Value = doctor.ToString (). Trim ();
}
mydb = null;
return;
}
catch
{