Exemple #1
0
        private void frm4_VisibleChanged(object sender, EventArgs e)
        {
            if (!this.Visible)
            {
                pntLog.user = Environment.UserName;
                if (rbGood.Checked)
                {
                    pntLog.OFFflagError = false;
                    this.Text           = "0";
                }
                else if (rbError.Checked)
                {
                    pntLog.OFFflagError = true;
                    this.Text           = "0";
                }
                else
                {
                    MessageBox.Show("Select if there is an error plz");
                    this.Text = "1";
                    return;
                }

                this.Text = "2";

                pntLog.i2c = cbi2c.Checked;


                pntLog.Major = (int)nMajor.Value;
                pntLog.Minor = (int)nMinor.Value;

                pntLog.OFFnote      = tbComments.Text;
                pntLog.OFFtimestamp = DateTime.Now.ToString("HH:mm:ss");
                pntLog.totalmin     = DateTime.Now.Subtract(Convert.ToDateTime(pntLog.ONtimestamp)).ToString("mm");

                pntLog.writeToFile();
            }
            else
            {
                this.Text = "0";
            }
        }