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 6224665
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T08:42:40+00:00 2026-05-24T08:42:40+00:00

I have a Qt Form that contains 2 combo box messages. The second combobox

  • 0

I have a Qt Form that contains 2 combo box messages. The second combobox message depends on the first combo box message. I mean that the dates from the second combobox message depends on the element that I select in the first combobox.
In this moment I have different dates in the first combobox. But the second combobox is not working. I need to creare a connect method or what?
Thx! APpreciate!
Could someone give me a short example?

  • 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-05-24T08:42:40+00:00Added an answer on May 24, 2026 at 8:42 am

    It’s fairly simple. A combobox emits the currentIndexChanged signal that also tells you the new index. Write a method that accepts an integer and changes the second combobox according to the integer (which is the index of the selection in combobox 1).

    Here are some code sniplets from a working example.

    Method declaration in your window/whatever class header:

    public slots:
        void setI1(int index);
    

    Filling combobox 1, connecting the signal, e.g. in the constructor:

    i1Box->addItem("Neutral", 0);
    i1Box->addItem("2,856 K (Illuminant A, light bulb)",    2856);
    // ...
    
    connect(i1Box, SIGNAL(currentIndexChanged(int)),
            this, SLOT(setI1(int)));
    

    Implementation of the method:

    void ViewerWindow::setI1(int index) {
        // either use index directly, or, as in this case we have items holding an int:
        int i1 = i1Box->itemData(index).value<int>();
        // use the value to change second combobox here
    }
    

    If it does not work as expected, it is always helpful to print some debug output inside the method that should be called to see where it goes wrong in the chain.

    Reference: http://doc.qt.nokia.com/latest/signalsandslots.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that contains a tab canvas. On the second canvas page
I currently have two comboboxes on a form. The first combobox contains a list
I have a form that contains several comboxes that their data is coming from
I have form, the form contains JavaStaticText fields, and Combo box, and Text fields.
I have a form that contains a TOpenDialog component ( OpenDialog1 ) and a
I have a form that contains dataGridView, whose coloumn are set to dgrv1.Width =dgrv1.Columns.GetColumnsWidth(DataGridViewElementStates.Visible)+20;
i have a form that contains checkboxes. I've named the checkboxes as stream[], so
Say I have a form that contains a drop-down list populated by values stored
I have a form MainForm which is a Windows Forms form that contains many
I need to make the program which have one form that contains PNG image

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.