private void btnVerDir_Click(object sender, EventArgs e)
        {
            if (listBoxDir.SelectedIndex != -1)
            {
                CargarDireccion CargarDirFrm = new CargarDireccion(1, ((AtribDir)listBoxDir.SelectedItem)._idDir);
                if (CargarDirFrm.ShowDialog() == DialogResult.OK)
                {


                }

            }
        }
        private void btnNuevaDir_Click(object sender, EventArgs e)
        {

            if (pacienteSel != null)
            {
                CargarDireccion CargarDirFrm = new CargarDireccion(1);
                CargarDirFrm.pacienteId = this.pacienteSel.id_paciente;
                if (CargarDirFrm.ShowDialog(this) == DialogResult.OK)
                {

                    CargaListBoxDirecciones();
                    toolStripStatusLabel1.Text = "Direccion cargada correctamente a las " + DateTime.Now.ToString("hh:mm:ss");
                }
                else
                {
                    toolStripStatusLabel1.Text = "Se ha producido un error";
                }


            }
        }