Example #1
0
 public void setSecond(ref Form1.workhorse s)
 {
     second.ncol     = s.ncol;
     second.nrow     = s.nrow;
     second.elements = s.elements;
     second.colnames = s.colnames;
     second.filename = s.filename;
 }
Example #2
0
 public void setFirst(ref Form1.workhorse f)
 {
     first.ncol     = f.ncol;
     first.nrow     = f.nrow;
     first.elements = f.elements;
     first.colnames = f.colnames;
     first.filename = f.filename;
     setPlotVar(ref first);
 }
Example #3
0
        public void setSecond(ref Form1.workhorse s)
        {
            second.ncol     = s.ncol;
            second.nrow     = s.nrow;
            second.elements = s.elements;
            second.colnames = s.colnames;
            second.filename = s.filename;


            populate(comboBox4, ref second);
            populate(comboBox5, ref second);
            populate(comboBox6, ref second);
            file2.Text = second.filename;
        }
Example #4
0
        public void setFirst(ref Form1.workhorse f)
        {
            first.ncol     = f.ncol;
            first.nrow     = f.nrow;
            first.elements = f.elements;
            first.colnames = f.colnames;
            first.filename = f.filename;


            populate(comboBox1, ref first);
            populate(comboBox2, ref first);
            populate(comboBox3, ref first);
            file1.Text = first.filename;
        }