CNSA-212-Personal/Database2/frmTest.cs
2024-02-12 10:37:14 -05:00

34 lines
697 B
C#

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;
using System.Configuration;
using System.Collections;
using System.Data.SqlClient;
namespace Database2
{
public partial class frmTest : Form
{
public frmTest()
{
InitializeComponent();
}
private void cboTest_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void dgvStudents_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
}
}