Exemplo n.º 1
0
        private void BackBtn_Click(object sender, EventArgs e)
        {
            StoreChanges();
            IDDCollarCal calib = new IDDCollarCal(col, modified);

            calib.Show();
            this.Close();
        }
Exemplo n.º 2
0
        private void NextBtn_Click(object sender, EventArgs e)
        {
            //store changes?
            IDDCollarCal cal = new IDDCollarCal(col, modified);

            cal.Show();
            this.Close();
        }
Exemplo n.º 3
0
        private void NextBtn_Click(object sender, EventArgs e)
        {
            //store changes?
            IDDCollarCal cal = new IDDCollarCal(col, modified);

            cal.StartPosition = FormStartPosition.CenterScreen;
            cal.Show();
            this.Close();
        }
Exemplo n.º 4
0
        private void BackBtn_Click(object sender, EventArgs e)
        {
            StoreChanges();
            IDDCollarCal calib = new IDDCollarCal(col, modified);

            calib.StartPosition = FormStartPosition.CenterScreen;
            calib.Show();
            Close();
        }
Exemplo n.º 5
0
 private void NextBtn_Click(object sender, EventArgs e)
 {
     //store changes?
     IDDCollarCal cal = new IDDCollarCal(col,modified);
     cal.Show();
     this.Close();
 }
Exemplo n.º 6
0
 private void BackBtn_Click(object sender, EventArgs e)
 {
     StoreChanges();
     IDDCollarCal calib = new IDDCollarCal(col, modified);
     calib.Show();
     Close();
 }