private void button_Aceptar_Click(object sender, EventArgs e)
        {
            if (comboBox_funcionalidades.SelectedIndex == 0 && primeraVez == 1)
            {
                this.Hide();
                Registro_de_Usuario.Alta altaUsuario = new Registro_de_Usuario.Alta();
                altaUsuario.cliente = true;
                altaUsuario.Show();
            }
            if (comboBox_funcionalidades.SelectedIndex == 0 && primeraVez != 1)
            {
                this.Hide();
                Registro_de_Usuario.Modificacion modUsuario = new Registro_de_Usuario.Modificacion();
                modUsuario.cliente = true;
                modUsuario.Show();
            }
            if (comboBox_funcionalidades.SelectedIndex == 1)
            {
                Comprar_Ofertar.Comprar comprar = new Comprar_Ofertar.Comprar();
                comprar.Show();
                this.Close();
            }
            if (comboBox_funcionalidades.SelectedIndex == 2)
            {
                Comprar_Ofertar.Ofertar ofertar = new Comprar_Ofertar.Ofertar();
                ofertar.Show();
                this.Close();
            }
            if (comboBox_funcionalidades.SelectedIndex == 3)
            {
                Gestion_de_Preguntas.Ver_Respestas preguntas = new Gestion_de_Preguntas.Ver_Respestas();
                preguntas.Show();
            }
            if (comboBox_funcionalidades.SelectedIndex == 4)
            {
                Calificar_Vendedor.ListaOperacionesSeleccion calificar = new Calificar_Vendedor.ListaOperacionesSeleccion();
                calificar.Show();
                this.Close();

            }
            if (comboBox_funcionalidades.SelectedIndex == 5)
            {
                Historial_Cliente.Historial historial = new Historial_Cliente.Historial();
                historial.cliente = true;
                historial.Show();
                this.Close();

            }
        }
 private void button_Comprar_Click(object sender, EventArgs e)
 {
     Comprar_Ofertar.Comprar comprar = new Comprar_Ofertar.Comprar();
     comprar.Show();
     this.Close();
 }