Ejemplo n.º 1
0
 public PartitioningResults(Setup setup, CureProperties cureProperties, DataMgr datamgr)
 {
     InitializeComponent();
     this.setup      = setup;
     this.connection = new SqlConnection(GlobalVariables.connection_string);
     this.connection.Open();
     this.dataMgr        = datamgr;
     this.cureProperties = cureProperties;
     initliazePartitionMap();
     this.comboBox1.DataSource = this.map.Keys.ToArray();
 }
Ejemplo n.º 2
0
        private void button1_Click(object sender, EventArgs e)
        {
            this.isJoinRquired   = checkBox1.Checked;
            this.selectedTableA  = comboBox5.Text;
            this.selectedColumnA = comboBox2.Text;
            this.selectedTableB  = comboBox3.Text;
            this.selectedColumnB = comboBox4.Text;
            CureProperties cureProperties = new CureProperties(this, dataMgr);

            cureProperties.Show();
            this.Hide();
        }