Exemplo n.º 1
0
        // Instructions to be executed by a new thread when the user chooses to update an existing bug.
        private void threadUpdateBug()
        {
            CrtBugForm crt = new CrtBugForm(orgDirectoryStr + dateTimePicker1.Value.ToString("MM_dd_yyyy") + "\\",
                                            true);

            activeBugForms--;
        }
Exemplo n.º 2
0
        public JiraWebBrwsrForm(string url, CrtBugForm crt)
        {
            this.crt = crt;
            InitializeComponent();

            try
            {
                jiraBrowser.Navigate(url);
            }
            catch
            {
                MessageBox.Show("An error occurred while attempting to open the requested web page. The browser will now close.");
                Close();
            }

            ShowDialog();
        }
Exemplo n.º 3
0
        public JiraWebBrwsrForm(CrtBugForm crt)
        {
            this.crt = crt;
            InitializeComponent();

            try
            {
                jiraBrowser.Navigate("https://jira.zenimax.com/secure/CreateIssue!default.jspa");
            }
            catch
            {
                MessageBox.Show("An error occurred while attempting to open the requested web page. The browser will now close.");
                Close();
            }

            ShowDialog();
        }
Exemplo n.º 4
0
        // Instructions to be executed by a new thread when the user chooses to create a new bug.
        private void threadCreateBug()
        {
            CrtBugForm crt = new CrtBugForm(todayDirectoryStr, false);

            activeBugForms--;
        }