コード例 #1
0
        public Form1()
        {
            InitializeComponent();
            lite = new DatabaseLite();
            lite.initDatabase();
            //connection();
            connectedUser();

            //init objects
            fa     = null;
            ma     = null;
            de     = null;
            ehs    = null;
            shs    = null;
            risque = null;
            spm    = null;
            ds     = null;

            //position
            X = this.Top;
            Y = this.Left;

            menuStrip1.BackColor = Color.Black;
            menuStrip1.ForeColor = Color.White;

            decimalSeprerator = new CultureInfo("en-US");
            Thread.CurrentThread.CurrentCulture = decimalSeprerator;
        }
コード例 #2
0
        private void familleToolStripMenuItem_Click(object sender, EventArgs e)
        {
            fa = new Familles();
            //fa.SetDesktopLocation(this.Top + 25, this.Left + 40);
            fa.Show();

            /*
             * if (fa == null)
             * {
             *  fa = new Familles();
             *  fa.Show();
             * }
             * else
             * {
             *  fa.Activate();
             * }*/
        }