summary refs log tree commit diff
path: root/invoice_total4/InvoiceTotal/Program.cs
diff options
context:
space:
mode:
author1970-01-01 00:00:00 +0000
committer2025-01-08 04:46:10 +0000
commit1ac90768665c89d64a59f6e9935242fba1514bb9 (patch)
tree271671c7724a2d4f26e85f08df745b8163d6a811 /invoice_total4/InvoiceTotal/Program.cs
parentinvoice total 3 (diff)
downloadcs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar
cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.gz
cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.bz2
cs-1ac90768665c89d64a59f6e9935242fba1514bb9.tar.xz
cs-1ac90768665c89d64a59f6e9935242fba1514bb9.zip
invoice total 4
Diffstat (limited to 'invoice_total4/InvoiceTotal/Program.cs')
-rw-r--r--invoice_total4/InvoiceTotal/Program.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/invoice_total4/InvoiceTotal/Program.cs b/invoice_total4/InvoiceTotal/Program.cs
new file mode 100644
index 0000000..3c6b99d
--- /dev/null
+++ b/invoice_total4/InvoiceTotal/Program.cs
@@ -0,0 +1,23 @@
+using System;

+using System.Collections.Generic;

+using System.Linq;

+using System.Threading.Tasks;

+using System.Windows.Forms;

+

+namespace InvoiceTotal

+{

+    static class Program

+    {

+        /// <summary>

+        ///  The main entry point for the application.

+        /// </summary>

+        [STAThread]

+        static void Main()

+        {

+            Application.SetHighDpiMode(HighDpiMode.SystemAware);

+            Application.EnableVisualStyles();

+            Application.SetCompatibleTextRenderingDefault(false);

+            Application.Run(new frmInvoiceTotal());

+        }

+    }

+}