private void Form1_Shown(object sender, EventArgs e) { frmOpenMenu f = new frmOpenMenu(this); f.Show(); this.Hide(); }
private void Form1_Shown(object sender, EventArgs e) { // hide this and show opening menu Hide(); frmOpenMenu menu = new frmOpenMenu(this); menu.Show(); }
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(); }
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(); }
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(); }