Ejemplo n.º 1
0
        static void Main()
        {
            DevExpress.UserSkins.BonusSkins.Register();
            DevExpress.Skins.SkinManager.EnableFormSkins();
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            const string _Version = "1.13";
            Form_Log     form_Log = new Form_Log(_Version);

            if (form_Log.ShowDialog() == DialogResult.OK)
            {
                Form_DownLoad form_DownLoad = new Form_DownLoad();
                if (form_DownLoad.ShowDialog() == DialogResult.OK)
                {
                    Application.Run(new frmMain(_Version));
                }
                form_DownLoad.Dispose();
            }
            else
            {
                Application.Exit();
            }
            form_Log.Dispose();
        }
    public List <string> folderList;    //<---- i want to access this.....
    private void button_showForm2_Click(object sender, EventArgs e)
    {
        Form_Log ConfirmBoxForm = new Form_Log(this);

        ConfirmBoxForm.Show();
    }