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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:22:18+00:00 2026-05-27T11:22:18+00:00

I am developing an Eclipse RCP application and have a strange problem: I open

  • 0

I am developing an Eclipse RCP application and have a strange problem:

I open da new dialog window using final Shell dialog = new Shell(Display.getCurrent()); and display a tree (Tree tree_indicators = new Tree(dialog, SWT.None);) in it.
When I run the code on my developing environment (Ubuntu 11.04 64-Bit, GTK), all is fine, the tree will be displayed correctly.
When I Export the application to Win32 (32 Bit) and run it on Windows XP in a virtual Machine (using VirtualBox), the Dialog opens correctly, but the tree will not be displayed.

I also call dialog.pack(); which reserves space for the tree but it isn’t visible. I have no clue what the problem is, I also do not get any error message or log entry.

Do you have any suggestions where to search for a solution?

Thanks

  • 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-27T11:22:19+00:00Added an answer on May 27, 2026 at 11:22 am

    Solved it, was a silly mistake.
    When I filled the tree I set redraw to false and forgot to set it to true after filling:

    // Turn off drawing to avoid flicker
           t.setRedraw(false);
            for (Indicator ind : indicators) {
                TreeItem item = new TreeItem(t, SWT.None);
                item.setText(ind.getNumber() + " " + ind.getName());
                item.setData(ind);
                // create sub elements
                for (SubIndicator subInd : ind.getSubIndicators()) {
                    TreeItem child = new TreeItem(item, SWT.None);
                    child.setText(subInd.getNumberString() + " " + subInd.getName());
                    child.setData(subInd);
                }
            }
            // this one I forgot
            t.setRedraw(true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing an Eclipse RCP application. I have been told that the UI part
I'm developing an Eclipse plug-in and I have a problem which is reproduced here:
Is it possible, when developing an Eclipse RCP Application, to stack a view with
I've been developing a java application with the eclipse RCP which requires the Java
When I am developing an Eclipse RCP application, what is the easiest way to
We are developing an Eclipse RCP application. We decided to use SVN for revision
When developing a eclipse rcp applicatin,I need to restart the application after I changed
I am developing an Eclipse RCP application. In this application I am importing the
I'm developing an Eclipse SWT application using Eclipse. There are also some JUnit 4
My problem is very weird. I am developing in eclipse using QT lib and

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.