Exemplo n.º 1
0
 private void txtUpProID_TextChanged(object sender, EventArgs e)
 {
     if (txtUpProID.Text.Trim().Length > 0)
     {
         selectClass.getProductDetails(Convert.ToInt16(txtUpProID.Text));
         txtUpItemNAme.Text   = selectClass.prosName;
         cboUpSuppliedBy.Text = selectClass.prosSuppliedBy;
         txtUpItemPrice.Text  = selectClass.prosPrice;
         txtUpQty.Text        = selectClass.prosQty;
         txtUpDetails.Text    = selectClass.prosDetails;
         dtpUpmanDate.Text    = selectClass.prosManDate;
         txtUpLocation.Text   = selectClass.prosLocation;
         dtpExpiryDate.Text   = selectClass.prosExpiryDate;
     }
     else
     {
         ClearAlluPDATE();
     }
 }