Infragistics Home

Infragistics Forums

Infragistics community online discussions.
Welcome to Infragistics Forums Sign in | FAQ
in Search

black bar in the title bar (vista)

Last post 09-18-2008 11:22 by beckham. 5 replies.
Page 1 of 1 (6 items)
Sort Posts: Previous Next
  • 08-27-2008 5:43

    black bar in the title bar (vista)

    I’m using vista, I’m getting the black bar in the title bar. so i cant able to see the control box. When I shrink the window, it puts the black bar there, but when I expand it, it goes away. This problem exixts only in vista. I am using Infragistics 7.2. my application is windows application.
    Sudha
    • Post Points: 35
  • 08-27-2008 16:53 In reply to

    Re: black bar in the title bar (vista)

    What control are you using?  This will help us get your post routed to the correct forum.

    Vince McDonald
    Manager of Developer Support, MCP
    Infragistics, Inc.

    Was this post helpful? Please let me know by using the star ratings and the "Answered" button from the forum's web interface.

    Need help? Find the various ways you can ask for help from Infragistics.
    • Post Points: 5
  • 08-28-2008 16:45 In reply to

    Re: black bar in the title bar (vista)

    This sounds like an issue that occured with the UltraToolbarsManager, specifically when using a FormDisplayStyle of RoundedSizable/RoundedFixed.  I'm almost certain that this was fixed in a hotfix a while ago, so you should ensure that you have installed the latest hotfix for 7.2; you can find a list of the available hotfixes here.

    -Matt

    • Post Points: 20
  • 09-18-2008 10:04 In reply to

    • beckham
    • Not Ranked
    • Joined on 06-04-2008
    • Points 25

    Re: black bar in the title bar (vista)

     Hi,

     I have the same problem using Infragistics 8.1 - it is something to do with using the ribbon, and as you mentione, the rounded corners it puts to give the office 2007 look.

     Can anyone help me with this, I have clients on my back because of it!

     

    Philip.

    • Post Points: 20
  • 09-18-2008 11:11 In reply to

    Re: black bar in the title bar (vista)

    Philip,

    I'm pretty sure that there was another case reported recently where this could happen, and I think that it has been addressed.  If I recall correctly, it happened when setting the WindowState of the form at run-time.  I would first ensure that you have the latest hotfix; if you can still reproduce the problem you should submit the issue to Developer Support.

    I think that one of the hack workarounds would be to force the recreation of the handle of the window (i.e.  this.RecreateHandle()), so you could try that in the meantime, though it will cause a flicker when performed.

    -Matt

    • Post Points: 20
  • 09-18-2008 11:22 In reply to

    • beckham
    • Not Ranked
    • Joined on 06-04-2008
    • Points 25

    Re: black bar in the title bar (vista)

    Hi Matt,

    Thanks for the reply.  Seeing as Vista doesn't show the Office 2007 style rounded blue border anyway, I just put in a dirty but effective work around:

    private const int Vista = 6;

    ...

    if (Environment.OSVersion.Version.Major == Vista)

    {

       this.toolbarsManager.FormDisplayStyle = FormDisplayStyle.Standard;

       this.toolbarsManager.Ribbon.QuickAccessToolbar.Visible = false;

    }

    It's not perfect, but it does the job!

    • Post Points: 5
Page 1 of 1 (6 items)
Powered by Community Server (Commercial Edition), by Telligent Systems