CNSA-212-Personal/Database3/frmSearch.cs

85 lines
2.5 KiB
C#
Raw Normal View History

2024-02-13 13:30:17 -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-13 14:30:26 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.VisualBasic;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Data.SqlClient;
2024-02-13 15:46:12 -05:00
using Database3;
2024-02-13 14:30:26 -05:00
2024-02-13 13:30:17 -05:00
namespace Database3
{
public partial class frmSearch : Form
{
public frmSearch()
{
InitializeComponent();
}
2024-02-13 13:34:44 -05:00
private void btnSearch_Click(object sender, EventArgs e)
{
2024-02-13 15:46:12 -05:00
string studentid = "9999999999";
string lname = "9999999999";
string dob = null;
2024-02-13 14:30:26 -05:00
try
{
DataSet ds = new DataSet();
StudentDataTier stuDT = new StudentDataTier();
2024-02-13 15:46:12 -05:00
try
{
2024-02-13 14:30:26 -05:00
2024-02-13 15:46:12 -05:00
studentid = txtStuID.Text;
lname = txtlname.Text;
dob = txtDOB.Text;
2024-02-13 14:30:26 -05:00
2024-02-13 15:46:12 -05:00
}
catch (Exception exception)
{
MessageBox.Show("Error Parsing Search Parameters","Error", MessageBoxButtons.OK);
}
// Get the dataset using all three search parameters.
ds = stuDT.GetStudents(studentid, lname, dob);
// Check to see if any record is returned.
if (ds.Tables[0].Rows.Count > 0) // There is a record.
2024-02-13 14:30:26 -05:00
{
dgvStudents.Visible = true;
2024-02-13 15:46:12 -05:00
// Get data source.
2024-02-13 14:30:26 -05:00
dgvStudents.DataSource = ds.Tables[0];
dgvStudents.AlternatingRowsDefaultCellStyle.BackColor = Color.LightGreen;
// Set the row and column header styles.
dgvStudents.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
dgvStudents.ColumnHeadersDefaultCellStyle.BackColor = Color.Green;
}
2024-02-13 15:46:12 -05:00
else
{
dgvStudents.Visible = false; // Hide the DataGridView if no results are found.
MessageBox.Show("No records found.");
}
2024-02-13 14:30:26 -05:00
}
catch (Exception ex)
{
2024-02-13 15:46:12 -05:00
MessageBox.Show($"An error occurred: {ex.Message}");
2024-02-13 14:30:26 -05:00
}
2024-02-13 13:34:44 -05:00
}
2024-02-13 15:46:12 -05:00
}
2024-02-13 14:30:26 -05:00
2024-02-13 13:30:17 -05:00
}