Ejemplo n.º 1
0
 private void utxtcCusName_EditorButtonClick(object sender, EditorButtonEventArgs e)
 {
     using (var sc = new SelectCustomer())
     {
         if (sc.ShowDialog() == DialogResult.Yes)
         {
             _cCusCode         = sc.CCusCode;
             utxtcCusName.Text = sc.CCusName;
         }
     }
 }
Ejemplo n.º 2
0
 private void utxtcCusName_EditorButtonClick(object sender, EditorButtonEventArgs e)
 {
     using (var sc = new SelectCustomer())
     {
         if (sc.ShowDialog() == DialogResult.Yes)
         {
             _cCusCode = sc.CCusCode;
             utxtcCusName.Text = sc.CCusName;
         }
     }
 }