Beispiel #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            //Correspondence
            CorrespondenceForm cf = new CorrespondenceForm();

            SetClientValues(cf, "Correspondence.ICorrespondenceExternalEC");
            ShowMethod1(cf);
        }
Beispiel #2
0
 private void btn_Correspondence_Click(object sender, EventArgs e)
 {
     //Correspondence
     if (UseEC2Interface)
     {
         CorrespondenceFormEC2 cf = new CorrespondenceFormEC2();
         cf.Text = "CorrespondenceForm (EC2)";
         SetClientValues(cf, "CorrespondenceEC2.ICorrespondenceExternalEC2");
         ShowMethod1(cf);
     }
     else
     {
         CorrespondenceForm cf = new CorrespondenceForm();
         cf.Text = "CorrespondenceForm (EC)";
         SetClientValues(cf, "CorrespondenceEC2.ICorrespondenceExternalEC2");
         ShowMethod1(cf);
     }
 }