CNSA-212-Personal/Database2/frmTest.cs

34 lines
697 B
C#
Raw Normal View History

2024-02-12 10:06:46 -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-12 10:37:14 -05:00
using System.Configuration;
using System.Collections;
using System.Data.SqlClient;
2024-02-12 10:06:46 -05:00
namespace Database2
{
2024-02-12 10:27:33 -05:00
public partial class frmTest : Form
2024-02-12 10:06:46 -05:00
{
2024-02-12 10:27:33 -05:00
public frmTest()
2024-02-12 10:06:46 -05:00
{
InitializeComponent();
}
2024-02-12 10:37:14 -05:00
private void cboTest_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void dgvStudents_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
2024-02-12 10:06:46 -05:00
}
}