CNSA-212-Personal/Database3/frmSearch.cs

25 lines
476 B
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;
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 13:30:17 -05:00
}
}