Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A MainMenu option in my app calls:

    TStyleManager.SetStyle('Ruby Graphite');

It properly changes the style in my XE2 (Update 3) application almost everywhere. Here's the problem:

I have a TPageControl with 3 TabSheets, each containing a TFrame. The above call properly changes the style of the currently visible TabSheet's components to 'Ruby Graphite'.

However, when I click to switch to another tabsheet, all of its components are invisible until I move my mouse over them. When I return to the original TabSheet, its components too are now not visible until I hover over them.

I tried explicitly calling .Refresh and .Repaint on the frames themselves, but that didn't make the components on them visible.

What's weird is that executing:

    TStyleManager.SetStyle('Windows');

returns the style to the standard, with all components visible.

The TTabSheet is on a panel which is on a panel, if that matters. And, I'm using some 3rd party components (not in these frames) that are threaded. I believe that I have disabled them though.

Any suggestions on how to force the visual components on a formerly hidden tab to become visible after changing the style from Windows?

EDIT: Link to short screen video that shows the refresh problem: http://tinyurl.com/sostyle.

I have also on occasion found that the software doesn't respond when clicking on the icons (like maximize) in the upper right corner. There's just something weird going on that is over my head. So far, I've been unable boil this down to a small example from the 40,000 lines of code in the application.

share|improve this question
1  
I can't reproduce your issue, can you give more information about how you attach the frames to the tabsheets? or maybe provide a minimal code to reproduce the issue? – RRUZ Jan 4 '12 at 5:21
I haven't been able to reproduce it in a small, standalone program. It's only happening in my large app, which is tough to strip down. I'll keep trying. Thanks for trying, RRUZ. In case seeing it happen in any way, here's a short screen recording of it happening: tinyurl.com/sostyle – Robert Frank Jan 4 '12 at 16:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.