Esempio n. 1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            SSApplicationContext appContext = SSApplicationContext.getAppContext();

            appContext.RunForm(new Form1(""));
            Application.Run(appContext);
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            SSApplicationContext appContext = SSApplicationContext.getAppContext();
            string path = null;

            if (args.Length > 0)
            {
                path = args[0];
            }
            // Tell the application context to run the form on the same
            // thread as the other forms.

            //appContext.RunForm(new SplashForm());

            appContext.RunForm(new SpreadSheetForm(false, "", "", new SSController(new ClientController())));
            Application.Run(appContext);
        }