private void txtidencargado_Validating(object sender, CancelEventArgs e) { if (!String.IsNullOrEmpty(txtidencargado.Text.Trim())) { txtnomencargado.Text = Ctool.nomentidades("V_EMPLEADOS", $"idcompania = {Ctool.cia} and id = {txtidencargado.Text.Trim()}"); } else { txtnomencargado.Text = string.Empty; } }
private void buscaremp() { FrmConsEmpleados frm = new FrmConsEmpleados(); frm.ShowDialog(); if (!String.IsNullOrEmpty(Ctool.vretorno)) { txtidencargado.Text = Ctool.vretorno.Trim(); txtnomencargado.Text = Ctool.nomentidades("V_EMPLEADOS", $"idcompania = {Ctool.cia} and id = {txtidencargado.Text.Trim()}"); Ctool.vretorno = String.Empty; } }