Exemple #1
0
        private void notifyIcon1_BalloonClick(object sender, System.EventArgs e)
        {
            if (powerOutBalloon)
                powerOutBalloon = false;
            if (this.appToClose.Length > 0 && this.closeProgramTimer.Enabled == true)
            {
                this.closeProgramTimer.Enabled = false;
                this.appToClose = "";
                kill = false;

            }
            if (waitingUpdates[0].Length > 0)
            {
                doExecute(waitingUpdates[0],waitingUpdates[1]);
                waitingUpdates[0] = "";
            }
            if (!connected)
            {
                connections con = new connections(this);
                con.Show();
                con.Refresh();
            }
        }
Exemple #2
0
 private void menuItem2_Click(object sender, EventArgs e)
 {
     //MessageBox.Show(getVersionInfo(),"VeraciTek Workstation - System Info");
     connections con = new connections(this);
     con.Show();
     con.Refresh();
 }