Exemple #1
0
        /**
         * Method to show information (SCHEDULE MANAHEMENT TAB)
         */
        private void picBoxInformationIcon_Click(object sender, EventArgs e)
        {
            String info = "You can enter your preferred working days and hours. " +
                          "When submitted your manager will see your preferred working shifts. " +
                          "However, your manager has the ability to change your preferred hours. " +
                          "When a schedule is made, you will be notified by email.";

            InformationForm informationForm = new InformationForm(info);

            informationForm.Show();
        }
        /**
         * Method to show information (SCHEDULE MANAHEMENT TAB)
         */
        private void picBoxInformationIcon_Click(object sender, EventArgs e)
        {
            String info = "As HR manager you have to the ability to make schedules based on the employee's submitted preferred shifts " +
                          "or you can make a schedule if they are no preferred shifts by an employee. " +
                          "There can only be 5 schedule made PER day and ONE employee per shift. " +
                          "After submitting the schedule, the employee will receive a email with schedule information.";

            InformationForm informationForm = new InformationForm(info);

            informationForm.Show();
        }