private void timer1_Tick(object sender, EventArgs e) { hour = Convert.ToInt32(label_hour.Text); min = Convert.ToInt32(label_minute.Text); sec = Convert.ToInt32(label_second.Text); if (min == 59 && sec == 59) { label_hour.Text = (hour + 1).ToString("00"); label_minute.Text = "00"; label_second.Text = "00"; min = 0; sec = 0; isenter = true; } else if (sec == 59) { label_minute.Text = (min + 1).ToString("00"); label_second.Text = "00"; sec = 0; isenter = true; } else { isenter = false; } if (!isenter) { label_second.Text = (sec + 1).ToString("00"); } if (isdisconnect) { try { // close the form on the forms thread LockWindow lw = new LockWindow(mycomputer, mainwind); lw.Show(); server.Stop(); backgroundWorker1.CancelAsync(); MiscClass.SetConfigValue("ActiveSession", mysession.Id.ToString() + "{{Session}}" + DateTime.Now.ToString("MM/dd/yyyy HH:mm:ss")); this.Close(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } label_pagesprinted_value.Text = pagescount; }
private void metroButton_redeem_Click(object sender, EventArgs e) { if (metroTextBox_accesscode.Text.Trim().Length == 4) { try { if (MiscClass.CheckNetworkAvailablity(tw.adapter_public, tw.ip_public)) { if (!MiscClass.GetConfigValue("ActiveSession").Equals("")) { string[] values = MiscClass.GetConfigValue("ActiveSession").Split(new string[] { "{{Session}}" }, StringSplitOptions.None); if (Session.PauseSession_CloseUnexpectedly(values[0], values[1])) { MiscClass.SetConfigValue("ActiveSession", ""); } } metroTextBox_accesscode.Enabled = false; metroButton_redeem.Enabled = false; var sessionobject = Session.GetNonClosedSession(mypc.Id, metroTextBox_accesscode.Text.Trim()); if (sessionobject.StartSession("Session Start By User", null)) { CommandControl cc = new CommandControl(sessionobject, mypc, tw, gkh); server.Stop(); backgroundWorker1.CancelAsync(); cc.Show(); this.Close(); } else { MessageBox.Show("Some thing went wrong while starting your session !", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } finally { metroTextBox_accesscode.Enabled = true; metroButton_redeem.Enabled = true; } } else { MessageBox.Show("Access code should be 4 characters long.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }