2024-01-31 12:05:11 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2024-02-14 18:21:17 -05:00
|
|
|
|
|
2024-01-31 12:05:11 -05:00
|
|
|
|
namespace Louis__Pharmacy_CNSA212_FP
|
|
|
|
|
{
|
2024-01-31 12:45:33 -05:00
|
|
|
|
public partial class frmInfo : Form
|
2024-01-31 12:05:11 -05:00
|
|
|
|
{
|
2024-02-16 11:32:00 -05:00
|
|
|
|
|
2024-02-14 18:21:17 -05:00
|
|
|
|
private ErrorProvider ep1 = new ErrorProvider();
|
|
|
|
|
|
2024-02-16 11:32:00 -05:00
|
|
|
|
public DataSet ds = new DataSet();
|
|
|
|
|
|
2024-01-31 12:45:33 -05:00
|
|
|
|
public frmInfo()
|
2024-01-31 12:05:11 -05:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2024-02-16 16:08:18 -05:00
|
|
|
|
|
|
|
|
|
dgvPatient.DoubleClick += cmuPatientEdit_Click;
|
|
|
|
|
|
2024-01-31 12:05:11 -05:00
|
|
|
|
}
|
2024-02-02 16:00:30 -05:00
|
|
|
|
|
|
|
|
|
private void frmInfo_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
2024-02-14 19:27:21 -05:00
|
|
|
|
KeyPreview = true;
|
|
|
|
|
KeyDown += frmInfo_KeyDown;
|
2024-02-15 12:04:26 -05:00
|
|
|
|
|
|
|
|
|
cmuPatientEdit.Enabled = false;
|
|
|
|
|
cmuPatientDelete.Enabled = false;
|
|
|
|
|
|
2024-02-16 16:08:18 -05:00
|
|
|
|
|
2024-02-16 19:36:56 -05:00
|
|
|
|
txtPatientFirst.Focus();
|
|
|
|
|
|
2024-02-02 16:00:30 -05:00
|
|
|
|
}
|
2024-02-06 11:46:50 -05:00
|
|
|
|
|
2024-02-14 19:27:21 -05:00
|
|
|
|
private void frmInfo_KeyDown(object sender, KeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
// esc not funtional
|
|
|
|
|
if (e.KeyCode == Keys.Escape) // Check if the pressed key is Escape
|
|
|
|
|
{this.Close(); // Close the form
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (e.KeyCode == Keys.Enter){
|
|
|
|
|
btnPatientSearch_Click(sender, e);
|
2024-02-19 10:47:16 -05:00
|
|
|
|
btnPhysicianSearch_Click(sender, e);
|
2024-02-14 19:27:21 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-06 11:46:50 -05:00
|
|
|
|
private void addUpdatePatientAndPhysicianToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2024-02-07 13:23:25 -05:00
|
|
|
|
|
|
|
|
|
private void pATIENTBindingNavigatorSaveItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
2024-02-14 18:21:17 -05:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-16 16:08:18 -05:00
|
|
|
|
public void btnPatientSearch_Click(object sender, EventArgs e)
|
2024-02-14 18:21:17 -05:00
|
|
|
|
{
|
|
|
|
|
string fname = "";
|
|
|
|
|
string lname = "";
|
|
|
|
|
string id = "";
|
|
|
|
|
|
2024-02-16 11:32:00 -05:00
|
|
|
|
|
2024-02-14 18:21:17 -05:00
|
|
|
|
|
|
|
|
|
if (txtPatientFirst.Text.Length + txtPatientLast.Text.Length + txtPatientID.Text.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
fname = txtPatientFirst.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
lname = txtPatientLast.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
id = txtPatientID.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ds = PharmacyDataTier.PatientInfoSearch(id,lname,fname);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ds.Tables[0].Rows.Count > 0) // There is a record.
|
|
|
|
|
{
|
|
|
|
|
dgvPatient.Visible = true;
|
|
|
|
|
// Get data source.
|
|
|
|
|
dgvPatient.DataSource = ds.Tables[0];
|
|
|
|
|
dgvPatient.AlternatingRowsDefaultCellStyle.BackColor = Color.LightGreen;
|
|
|
|
|
|
|
|
|
|
// Set the row and column header styles.
|
|
|
|
|
dgvPatient.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
|
|
|
|
|
dgvPatient.ColumnHeadersDefaultCellStyle.BackColor = Color.Green;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dgvPatient.Visible = false; // Hide the DataGridView if no results are found.
|
|
|
|
|
MessageBox.Show("No records found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(btnPatientSearch, "Error Searching");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtPatientID, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtPatientLast, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
ep1.SetError(txtPatientFirst, "Invalid Value");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2024-02-15 12:04:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmuPatientEdit.Enabled = dgvPatient.Rows.Count > 0;
|
|
|
|
|
cmuPatientDelete.Enabled = dgvPatient.Rows.Count > 0;
|
2024-02-14 18:21:17 -05:00
|
|
|
|
|
|
|
|
|
|
2024-02-07 13:23:25 -05:00
|
|
|
|
}
|
2024-02-14 19:27:21 -05:00
|
|
|
|
|
|
|
|
|
private void btnPrescriptionSearch_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
string rxID = "";
|
|
|
|
|
string patientID = "";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (txtPrescriptionPatID.Text.Length+txtRxNumber.Text.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
patientID = txtPrescriptionPatID.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
rxID = txtRxNumber.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ds = PharmacyDataTier.PrescriptionInfoSearch(rxID, patientID);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ds.Tables[0].Rows.Count > 0) // There is a record.
|
|
|
|
|
{
|
|
|
|
|
dgvPrescription.Visible = true;
|
|
|
|
|
// Get data source.
|
|
|
|
|
dgvPrescription.DataSource = ds.Tables[0];
|
|
|
|
|
dgvPrescription.AlternatingRowsDefaultCellStyle.BackColor = Color.LightGreen;
|
|
|
|
|
|
|
|
|
|
// Set the row and column header styles.
|
|
|
|
|
dgvPrescription.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
|
|
|
|
|
dgvPrescription.ColumnHeadersDefaultCellStyle.BackColor = Color.Green;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dgvPatient.Visible = false; // Hide the DataGridView if no results are found.
|
|
|
|
|
MessageBox.Show("No records found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(btnPrescriptionSearch, "Error Searching");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtRxNumber, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtPrescriptionPatID, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-19 11:56:51 -05:00
|
|
|
|
|
|
|
|
|
public void btnPhysicianSearch_Click(object sender, EventArgs e)
|
2024-02-14 19:43:07 -05:00
|
|
|
|
{
|
2024-02-15 12:04:26 -05:00
|
|
|
|
|
2024-02-14 19:43:07 -05:00
|
|
|
|
string fname = "";
|
|
|
|
|
string lname = "";
|
|
|
|
|
string phyID = "";;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (txtPhysicianFirst.Text.Length+txtPhysicianLast.Text.Length+txtPhysicianID.Text.Length > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
fname = txtPhysicianFirst.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
lname = txtPhysicianLast.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
phyID = txtPhysicianID.Text;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ds = PharmacyDataTier.PhysicianInfoSearch(fname, lname, phyID);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ds.Tables[0].Rows.Count > 0) // There is a record.
|
|
|
|
|
{
|
|
|
|
|
dgvPhysician.Visible = true;
|
|
|
|
|
// Get data source.
|
|
|
|
|
dgvPhysician.DataSource = ds.Tables[0];
|
|
|
|
|
dgvPhysician.AlternatingRowsDefaultCellStyle.BackColor = Color.LightGreen;
|
|
|
|
|
|
|
|
|
|
// Set the row and column header styles.
|
|
|
|
|
dgvPhysician.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
|
|
|
|
|
dgvPhysician.ColumnHeadersDefaultCellStyle.BackColor = Color.Green;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dgvPatient.Visible = false; // Hide the DataGridView if no results are found.
|
|
|
|
|
MessageBox.Show("No records found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(btnPhysicianSearch, "Error Searching");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtPhysicianID, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
ep1.SetError(txtPhysicianLast, "Invalid Value");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception exception)
|
|
|
|
|
{
|
|
|
|
|
ep1.SetError(txtPhysicianFirst, "Invalid Value");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 12:04:26 -05:00
|
|
|
|
|
2024-02-14 19:43:07 -05:00
|
|
|
|
}
|
2024-02-15 08:55:05 -05:00
|
|
|
|
|
|
|
|
|
private void cmuPatientNew_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-02-15 12:04:26 -05:00
|
|
|
|
|
2024-02-16 19:41:26 -05:00
|
|
|
|
frmPatient PatientAdd = new frmPatient(this, true);
|
2024-02-15 12:04:26 -05:00
|
|
|
|
PatientAdd.MdiParent = MdiParent;
|
|
|
|
|
PatientAdd.StartPosition = FormStartPosition.CenterScreen;
|
|
|
|
|
PatientAdd.Show();
|
|
|
|
|
PatientAdd.Focus();
|
|
|
|
|
|
|
|
|
|
|
2024-02-15 08:55:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void cmuPatientEdit_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-02-15 12:04:26 -05:00
|
|
|
|
if (dgvPatient.Rows.Count > 0)
|
|
|
|
|
{
|
2024-02-16 11:32:00 -05:00
|
|
|
|
|
|
|
|
|
dgvPatient.DataSource = ds.Tables[0];
|
2024-02-16 10:12:36 -05:00
|
|
|
|
// Console.WriteLine( dgvPatient.SelectedRows.Count);
|
2024-02-16 11:32:00 -05:00
|
|
|
|
DataGridViewRow row = new DataGridViewRow();
|
|
|
|
|
row = dgvPatient.SelectedRows[0];
|
2024-02-16 10:12:36 -05:00
|
|
|
|
string patid = "";
|
2024-02-16 11:32:00 -05:00
|
|
|
|
patid = (row.Cells[4].Value).ToString();
|
2024-02-16 19:41:26 -05:00
|
|
|
|
frmPatient PatientAdd = new frmPatient(this, false);
|
2024-02-15 12:04:26 -05:00
|
|
|
|
PatientAdd.MdiParent = MdiParent;
|
|
|
|
|
PatientAdd.StartPosition = FormStartPosition.CenterScreen;
|
|
|
|
|
PatientAdd.Show();
|
|
|
|
|
PatientAdd.Focus();
|
2024-02-16 10:12:36 -05:00
|
|
|
|
PatientAdd.FillPatient(patid);
|
|
|
|
|
|
2024-02-15 12:04:26 -05:00
|
|
|
|
}
|
2024-02-16 10:12:36 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dgvPatient_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
2024-02-16 16:08:18 -05:00
|
|
|
|
{
|
|
|
|
|
cmuPatientEdit_Click(sender, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Panel1_Paint(object sender, PaintEventArgs e)
|
2024-02-16 10:12:36 -05:00
|
|
|
|
{
|
|
|
|
|
|
2024-02-16 16:08:18 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void cmuPatientDelete_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dgvPatient.Rows.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
dgvPatient.DataSource = ds.Tables[0];
|
|
|
|
|
DataGridViewRow row = new DataGridViewRow();
|
|
|
|
|
row = dgvPatient.SelectedRows[0];
|
|
|
|
|
string patid = "";
|
|
|
|
|
patid = (row.Cells[4].Value).ToString();
|
|
|
|
|
PharmacyDataTier.DeletePatient(patid);
|
|
|
|
|
btnPatientSearch_Click(sender, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2024-02-15 08:55:05 -05:00
|
|
|
|
}
|
2024-02-16 20:13:30 -05:00
|
|
|
|
|
|
|
|
|
private void cmuPhysicianNew_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
frmPhysician physicianAdd = new frmPhysician(this, true);
|
|
|
|
|
physicianAdd.MdiParent = MdiParent;
|
|
|
|
|
physicianAdd.StartPosition = FormStartPosition.CenterScreen;
|
|
|
|
|
physicianAdd.Show();
|
|
|
|
|
physicianAdd.Focus();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void cmuPhysicianEdit_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
2024-02-19 10:47:16 -05:00
|
|
|
|
|
|
|
|
|
if (dgvPhysician.Rows.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
dgvPhysician.DataSource = ds.Tables[0];
|
|
|
|
|
DataGridViewRow row = new DataGridViewRow();
|
|
|
|
|
row = dgvPhysician.SelectedRows[0];
|
|
|
|
|
string phyID = "";
|
2024-02-19 11:56:51 -05:00
|
|
|
|
phyID = (row.Cells[1].Value).ToString();
|
2024-02-19 10:47:16 -05:00
|
|
|
|
frmPhysician PhysicianAdd = new frmPhysician(this, false);
|
|
|
|
|
PhysicianAdd.MdiParent = MdiParent;
|
|
|
|
|
PhysicianAdd.StartPosition = FormStartPosition.CenterScreen;
|
|
|
|
|
PhysicianAdd.Show();
|
|
|
|
|
PhysicianAdd.Focus();
|
|
|
|
|
PhysicianAdd.FillPhysician(phyID);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-16 20:13:30 -05:00
|
|
|
|
}
|
2024-02-19 13:11:10 -05:00
|
|
|
|
|
|
|
|
|
private void cmuPhysicianDelete_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (dgvPhysician.Rows.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
dgvPhysician.DataSource = ds.Tables[0];
|
|
|
|
|
DataGridViewRow row = new DataGridViewRow();
|
|
|
|
|
row = dgvPhysician.SelectedRows[0];
|
|
|
|
|
string phyID = "";
|
|
|
|
|
phyID = (row.Cells[1].Value).ToString();
|
|
|
|
|
PharmacyDataTier.DeletePhysician(phyID);
|
|
|
|
|
btnPhysicianSearch_Click(sender, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dgvPhysician_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void dgvPhysician_CellContentClick_1(object sender, DataGridViewCellEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
}
|
2024-01-31 12:05:11 -05:00
|
|
|
|
}
|
|
|
|
|
}
|