diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 2025-01-08 04:43:57 +0000 |
commit | 0a3d85e2ca50e52b92578ed9e2c1df0548e06e39 (patch) | |
tree | f5ff076c3199e7963a5246e575a5f425c4d62b44 /invoice_total1/InvoiceTotal/Program.cs | |
parent | todo list (diff) | |
download | cs-0a3d85e2ca50e52b92578ed9e2c1df0548e06e39.tar cs-0a3d85e2ca50e52b92578ed9e2c1df0548e06e39.tar.gz cs-0a3d85e2ca50e52b92578ed9e2c1df0548e06e39.tar.bz2 cs-0a3d85e2ca50e52b92578ed9e2c1df0548e06e39.tar.xz cs-0a3d85e2ca50e52b92578ed9e2c1df0548e06e39.zip |
invoice total 1
Diffstat (limited to 'invoice_total1/InvoiceTotal/Program.cs')
-rw-r--r-- | invoice_total1/InvoiceTotal/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/invoice_total1/InvoiceTotal/Program.cs b/invoice_total1/InvoiceTotal/Program.cs new file mode 100644 index 0000000..7f14579 --- /dev/null +++ b/invoice_total1/InvoiceTotal/Program.cs @@ -0,0 +1,22 @@ +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.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new frmInvoiceTotal()); + } + } +} \ No newline at end of file |