Not Monitored
Tag not monitored by Microsoft.
39,627 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
private void rEGISTRARToolStripMenuItem_Click(object sender, EventArgs e)
{
EMPLEADOS myEmpleado=new EMPLEADOS();
myEmpleado.Nombre=txtNombre.Text;
myEmpleado.Identidad=int.Parse(txtIdentidad.Text);
myEmpleado.Cargo=txtCargo.Text;
myEmpleado.SalarioDia = Decimal.Parse(txtSalarioDia.Text);
myEmpleado.DiasTrabajados= Int32.Parse(txtDiasTrabajados.Text);
myEmpleado.Contraseña = txtCONTRASEÑA.Text;
txtDevengado.Text = myEmpleado.CalculardeDengado(myEmpleado.SalarioDia, myEmpleado.DiasTrabajados).ToString();
Mypilaempleado.Push(myEmpleado);
dgvDatos.DataSource = null;
dgvDatos.DataSource = Mypilaempleado.ToArray();
}