Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8553987
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T14:46:45+00:00 2026-06-11T14:46:45+00:00

I am using the QT integrated designer in Visual Studio 2010 to design a

  • 0

I am using the QT integrated designer in Visual Studio 2010 to design a simple GUI. Here is what I want to do: I want to click a button called Update and use that to change an image that is displayed. I’ve verified that I am able to trigger a signal by pressing an update and used a slot on a text-field to clear. But can’t seem to change the image displayed using the Signal/Slot method ….

Here is the relevant code snippet (GUI.cpp):

 void GUI::changeImage() 
 {
     ui.Image->updatesEnabled();
     ui.Image->setPixmap(QPixmap("D:\\Documents\ and\ Settings\\Image.jpg"));
     ui.Image->update();
 }

GUI::GUI(QWidget *parent, Qt::WFlags flags)
    : QMainWindow(parent, flags)
{
    ui.setupUi(this);

    connect(ui.updateButton, SIGNAL(clicked()), ui.textField, SLOT (clear()) );
    connect(ui.updateButton, SIGNAL(clicked()), ui.Image, SLOT ( changeImage() ) );
}

GUI::~GUI()
{

}

Am I doing something wrong?

EDIT: The code for gui.h

#include <QtGui/QMainWindow>
#include "ui_gui.h"

class GUI : public QMainWindow
{
    Q_OBJECT

public:
    GUI(QWidget *parent = 0, Qt::WFlags flags = 0);
    ~GUI();

private:
    Ui::GUIClass ui;
    void changeImage() ;
};
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T14:46:46+00:00Added an answer on June 11, 2026 at 2:46 pm

    The slot belongs to the GUI class instance, not to ui.Image, so you should use this as the target in the connect call.

    connect(ui.updateButton, SIGNAL(clicked()), this, SLOT ( changeImage() ) );
    

    The slots have to be declared under a “slots” section:

    private slots:
        void changeImage() ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been using Visual Studio integrated with Source Safe for years, when I
The integrated Web Deployment in Visual Studio 2010 is pretty nice. It can create
For my project I am using the integrated Visual Studio unit-testing framework but I
Note: Visual Studio 2010 SP1 / MSBuild 4.0 I'm going crazy over this bug,
I'm developping a winform application using Visual Studio 2008, and everytime I change something
I'm writing a vb.net application which connects to a db using integrated security. However,
I'm using JavaFX integrated HTMLEditor. All the functions that it has are fine but
This application is using windows integrated authentication in IIS. No anonymous login. It's also
I am using Tika integrated in SOLR to index documents and allow search on
In my Wordpress Blog I'm currently using an integrated http://U.nu url-shortener. For this I've

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.