예제 #1
0
        private void ShowSchedules(object sender, EventArgs e)
        {
            try
            {
                if (!CheckIsOpened())
                {
                    return;
                }

                var form = new SchedulesForm(PRG.Schedules, PRG.ScheduleCodes);
                form.Show();
            }
            catch (Exception exception)
            {
                MessageBoxUtilities.ShowException(exception);
            }
        }
예제 #2
0
        private void ShowSchedules(object sender, EventArgs e)
        {
            try
            {
                if (!CheckIsOpened())
                {
                    return;
                }

                var form = new SchedulesForm(PRG.Schedules, PRG.ScheduleCodes);
                form.Show();
            }
            catch (Exception exception)
            {
                ExceptionHandler.Show(exception);
            }
        }