private void btnReportIssue_Click(object sender, EventArgs e)
        {
            if (Shaman.cfg.Debug == false)
            {
                MessageBox.Show(this,
                                "You have been running ShamWOW with DEBUG turned OFF." + Environment.NewLine
                                + "The log file does not contain information needed to" + Environment.NewLine
                                + "provide you support on this issue.  " + Environment.NewLine
                                + "" + Environment.NewLine
                                + "Please exit HonorBuddy and then re-start being sure" + Environment.NewLine
                                + "to enable the ShamWOW DEBUG flag to ON.",
                                "Warning - Debug flag is OFF", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            IssueForm frm = new IssueForm();

            frm.ShowDialog();
        }
 private void btnReportIssue_Click(object sender, EventArgs e)
 {
     if ( Shaman.cfg.Debug == false )
     {
         MessageBox.Show( this, 
             "You have been running ShamWOW with DEBUG turned OFF." + Environment.NewLine 
             + "The log file does not contain information needed to" + Environment.NewLine
             + "provide you support on this issue.  " + Environment.NewLine
             + "" + Environment.NewLine
             + "Please exit HonorBuddy and then re-start being sure" + Environment.NewLine
             + "to enable the ShamWOW DEBUG flag to ON.",
             "Warning - Debug flag is OFF", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
     IssueForm frm = new IssueForm();
     frm.ShowDialog();
 }