2019-10-07 12:37:47 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace QueueSys
|
|
|
|
|
{
|
|
|
|
|
public partial class frmEmployeeView : Form
|
|
|
|
|
{
|
|
|
|
|
public frmEmployeeView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-07 18:30:36 -04:00
|
|
|
|
/* Execute when program / main form loads.
|
|
|
|
|
* Pop up the customer view screen to drag onto second monitor */
|
2019-10-07 12:37:47 -04:00
|
|
|
|
private void frmEmployeeView_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Form frm = new frmCustomerView();
|
|
|
|
|
frm.Show();
|
|
|
|
|
}
|
2019-10-07 18:30:36 -04:00
|
|
|
|
|
|
|
|
|
/* Enable options menu. */
|
|
|
|
|
private void optionsToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Form frm = new frmOptions();
|
|
|
|
|
frm.Show();
|
|
|
|
|
frm.Activate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exits the application.
|
|
|
|
|
private void exitAltF4ToolStripMenuItem_Click(object sender, EventArgs e) => Application.Exit();
|
2019-10-07 12:37:47 -04:00
|
|
|
|
}
|
|
|
|
|
}
|