Print Page | Close Window

Status Bar: CAP NUM SCRL

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Command Bars
Forum Description: Topics Related to Codejock Command Bars
URL: http://forum.codejock.com/forum_posts.asp?TID=20122
Printed Date: 22 November 2024 at 9:19pm
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: Status Bar: CAP NUM SCRL
Posted By: apuhjee
Subject: Status Bar: CAP NUM SCRL
Date Posted: 12 September 2012 at 6:42pm
v15.3

You might want to check on the functionality of these three ID's for your StatusBar panes.  Looks to me like they are broken on Windows 8 (haven't tried any other OS's).

Xtreme Toolkit (MFC) still works fine... it's only COM that's broke.

In following the standard sample code, for this to work you need to set the pane text property manually for the text to show.

    XtremeCommandBars.StatusBar statusBar = CommandBars.StatusBar;
    statusBar.Visible = true;
    statusBar.AddPane(0);

    XtremeCommandBars.StatusBarPane pane = statusBar.AddPane(ID.INDICATOR_CAPS);
    pane.Text = "CAPS";

    pane = statusBar.AddPane(ID.INDICATOR_NUM);
    pane.Text = "NUM";

    pane = statusBar.AddPane(ID.INDICATOR_SCRL);
    pane.Text = "SCRL";

Cheers.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net