root/trunk/TruckExpoCDN/Program.cs @ 457

Wersja 415, 0.7 KB (wprowadzona przez marek, 17 years temu)

re #104

Line 
1using System;
2using System.Collections.Generic;
3using System.Windows.Forms;
4
5namespace ExportFaktur
6{
7    static class Program
8    {
9        /// <summary>
10        /// The main entry point for the application.
11        /// </summary>
12        [STAThread]
13        static void Main()
14        {
15            Application.EnableVisualStyles();
16            Application.SetCompatibleTextRenderingDefault(false);
17
18            //Logowanie logowanie = new Logowanie();
19
20           // if (logowanie.ShowDialog() == DialogResult.OK)
21           // {
22              //  Application.Run(new Form1());
23           // }
24
25            Application.Run(new ExportForm());
26        }
27    }
28}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.