Exemple #1
0
        private void btnWebOther_Click(object sender, EventArgs e)
        {
            OthersStringEditor stringForm = new OthersStringEditor(_editObject.WebPageOther, "Web Page Address(others)");

            if (stringForm.ShowDialog(this) == DialogResult.OK)
            {
                if (stringForm.sMultiValuedStringAttrValue != "")
                {
                    _editObject.WebPageOther = stringForm.sMultiValuedStringAttrValue;
                    UpdateApplyButton();
                }
            }
        }
Exemple #2
0
        private void btnTelOther_Click(object sender, EventArgs e)
        {
            OthersStringEditor stringForm = new OthersStringEditor(_editObject.TelephoneNumberOther, "Phone Number(others)");

            if (stringForm.ShowDialog(this) == DialogResult.OK)
            {
                if (stringForm.sMultiValuedStringAttrValue != "")
                {
                    _editObject.TelephoneNumberOther = stringForm.sMultiValuedStringAttrValue;
                    UpdateApplyButton();
                }
            }
        }
 private void btnWebOther_Click(object sender, EventArgs e)
 {
     OthersStringEditor stringForm = new OthersStringEditor(_editObject.WebPageOther, "Web Page Address(others)");
     if (stringForm.ShowDialog(this) == DialogResult.OK)
     {
         if (stringForm.sMultiValuedStringAttrValue != "")
         {
             _editObject.WebPageOther = stringForm.sMultiValuedStringAttrValue;
             UpdateApplyButton();
         }
     }
 }
 private void btnTelOther_Click(object sender, EventArgs e)
 {
     OthersStringEditor stringForm = new OthersStringEditor(_editObject.TelephoneNumberOther,"Phone Number(others)");
     if (stringForm.ShowDialog(this) == DialogResult.OK)
     {
         if (stringForm.sMultiValuedStringAttrValue != "")
         {
             _editObject.TelephoneNumberOther = stringForm.sMultiValuedStringAttrValue;
             UpdateApplyButton();
         }
     }
 }