nent ();
}
private void Form1_Load (object sender, EventArgs e)
{
sPath = Path.Combine (Application.StartupPath, "mybd.db");
Text = "Поліклініка";
}
private void button1_Click (object sender, EventArgs e)// Картка хворого
{
Form2 f = new Form2 ();// створюємо
f.ShowDialog ();// показуємо
}
private void button2_Click (object sender, EventArgs e)// Список лікарів
{
Form3 f = new Form3 ();// створюємо
f.ShowDialog ();// показуємо
}
private void button3_Click (object sender, EventArgs e)// Процедури
{
Form4 f = new Form4 ();// створюємо
f.ShowDialog ();// показуємо
}
private void button4_Click (object sender, EventArgs e)
{
Form5 f = new Form5 ();// створюємо
f.ShowDialog ();// показуємо
}
}
}
Зміст файлу
{
public partial class Form2: Form
{
private sqliteclass mydb = null;
private string sCurDir = string.Empty;
private string sPath = string.Empty;
private string sSql = string.Empty;
int i = -1;
public string fio;
public string male;
public string birth_date;
public string receipt;
public string disease;
public string doctor;
string medicine;
public string proc;
public Form2 ()
{
InitializeComponent ();
}
private void Form2_Load (object sender, EventArgs e)
{
sPath = Path.Combine (Application.StartupPath, "mybd.db");
Text = "Картка хворого";
// Заповнення таблиці
mydb = new sqliteclass ();
sSql = "SELECT id, fio, male, birth_date, receipt, doctor FROM card ORDER BY id DESC";
DataRow [] datarows = mydb.drExecute (sPath, sSql);
if (datarows == null) {
Text = "Помилка читання!";
mydb = null;