Example #1
0
 void countname_yTextBox_TextChanged(object sender, EventArgs e)
 {
     if (this.countname_yTextBox.Text.Trim().Length > 0)
     {
         this.wbcode_yTextBox.Text = PyWbCode.getWbCode(this.countname_yTextBox.Text).ToLower();
         this.pycode_yTextBox.Text = PyWbCode.getPyCode(this.countname_yTextBox.Text).ToLower();
     }
 }
Example #2
0
 void warename_yTextBox1_TextChanged(object sender, EventArgs e)
 {
     if (this.warename_yTextBox1.Text.Trim().Length > 0)
     {
         pycode_yTextBox.Text = PyWbCode.getPyCode(this.warename_yTextBox1.Text.Trim()).ToLower();
         wbcode_yTextBox.Text = PyWbCode.getWbCode(this.warename_yTextBox1.Text.Trim()).ToLower();
     }
 }
Example #3
0
 void dicdesc_yTextBox_TextChanged(object sender, EventArgs e)
 {
     if (this.dicdesc_yTextBox.Text.Trim().Length > 0)
     {
         pycode_yTextBox5.Text = PyWbCode.getPyCode(this.dicdesc_yTextBox.Text).ToLower();
         //wbcode_yTextBox5.Text = PyWbCode.getWbCode(this.pricename_yTextBox.Text).ToLower();
     }
 }
Example #4
0
        void yTextBox_BM_TextChanged(object sender, EventArgs e)
        {
            string n = this.yTextBox_BM.Text.Trim();

            if (n.Length > 0)
            {
                this.yTextBox_BMJM.Text = PyWbCode.getPyCode(n).ToUpper();
            }
        }
Example #5
0
        void yTextBox_Name_TextChanged(object sender, EventArgs e)
        {
            string n = this.yTextBox_Name.Text.Trim();

            if (n.Length > 0)
            {
                this.yTextBox_PY.Text = PyWbCode.getPyCode(n).ToLower();
                this.yTextBox_WB.Text = PyWbCode.getWbCode(n).ToLower();
            }
        }
Example #6
0
 void statusname_yTextBox_TextChanged(object sender, EventArgs e)
 {
     this.wbcode_yTextBox.Text = PyWbCode.getWbCode(this.statusname_yTextBox.Text).ToLower();
     this.pycode_yTextBox.Text = PyWbCode.getPyCode(this.statusname_yTextBox.Text).ToLower();
 }