From 1ebd91f5d16933b3138942888b566a7600b2e5c5 Mon Sep 17 00:00:00 2001 From: Aadit Agrawal Date: Tue, 28 Jan 2025 16:03:23 +0530 Subject: [PATCH] Add DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs --- .../WindowsFormsApplication2/Program.cs | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs diff --git a/DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs b/DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs new file mode 100644 index 0000000..c4bb3c8 --- /dev/null +++ b/DBMS/C-Sharp/Lab/Week1/Register/WindowsFormsApplication2/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApplication2 +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +}