Exemplo n.º 1
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            frmOpenMenu f = new frmOpenMenu(this);

            f.Show();
            this.Hide();
        }
Exemplo n.º 2
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            // hide this and show opening menu
            Hide();
            frmOpenMenu menu = new frmOpenMenu(this);

            menu.Show();
        }
Exemplo n.º 3
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            // position the comms window
            Payout.CommsLog.Location = new Point(this.Location.X + this.Width, this.Location.Y);

            // hide this and show opening menu
            Hide();
            frmOpenMenu menu = new frmOpenMenu(this);

            menu.Show();
        }
Exemplo n.º 4
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            // Position the comms window of the validator
            Point p = this.Location;

            p.X += this.Width;
            NV11.CommsLog.Location = p;
            // hide this and show opening menu
            Hide();
            frmOpenMenu menu = new frmOpenMenu(this);

            menu.Show();
        }
Exemplo n.º 5
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            // position the comms window
            Payout.CommsLog.Location = new Point (this.Location.X + this.Width, this.Location.Y);

            // hide this and show opening menu
            Hide();
            frmOpenMenu menu = new frmOpenMenu(this);
            menu.Show();
        }
Exemplo n.º 6
0
 private void Form1_Shown(object sender, EventArgs e)
 {
     // Position the comms window of the validator
     Point p = this.Location;
     p.X += this.Width;
     NV11.CommsLog.Location = p;
     // hide this and show opening menu
     Hide();
     frmOpenMenu menu = new frmOpenMenu(this);
     menu.Show();
 }
Exemplo n.º 7
0
 private void Form1_Shown(object sender, EventArgs e)
 {
     frmOpenMenu f = new frmOpenMenu(this);
     f.Show();
     this.Hide();
 }