Example #1
0
 void button1_Click(object sender, EventArgs e)
 {
     //RpartSimple rpart = new RpartSimple(this,set,results,profiles[set.mode]["Rpart"]);
     if (set.mode == INPUTMODE.USER_DEFINED)
     {
         RpartSimple rpart = new RpartSimple(this, set, results, profiles[set.mode]["Rpart"]);
         rpart.processName = GetProcessName(rpart);
         rpart.Show();
     }
     else
     {
         RpartSimple rpart = new RpartSimple(this, set, results);
         rpart.processName = GetProcessName(rpart);
         ProfileType type = new ProfileType(this, rpart);
         type.Show();
     }
     //rpart.Show();
     this.Hide();
 }
Example #2
0
 private void button2_Click(object sender, EventArgs e)
 {
     //HashSimple hash = new HashSimple(this,set,results,profiles[set.mode]["Hash"]);
     if (set.mode == INPUTMODE.USER_DEFINED)
     {
         HashSimple hash = new HashSimple(this, set, results, profiles[set.mode]["Hash"]);
         hash.processName = GetProcessName(hash);
         hash.Show();
     }
     else
     {
         HashSimple hash = new HashSimple(this, set, results);
         hash.processName = GetProcessName(hash);
         ProfileType type = new ProfileType(this, hash);
         type.Show();
     }
     //hash.Show();
     this.Hide();
 }
Example #3
0
 private void button3_Click(object sender, EventArgs e)
 {
     //uQlustTreeSimple tree=new uQlustTreeSimple(this,set,results,profiles[set.mode]["uQlustTree"]);
     if (set.mode == INPUTMODE.USER_DEFINED)
     {
         uQlustTreeSimple tree = new uQlustTreeSimple(this, set, results, profiles[set.mode]["uQlustTree"]);
         tree.processName = GetProcessName(tree);
         tree.Show();
     }
     else
     {
         uQlustTreeSimple tree = new uQlustTreeSimple(this, set, results);
         tree.processName = GetProcessName(tree);
         ProfileType type = new ProfileType(this, tree);
         type.Show();
     }
     //tree.Show();
     this.Hide();
 }