Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Command Bars
  New Posts New Posts RSS Feed - Status Bar: CAP NUM SCRL
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Status Bar: CAP NUM SCRL

 Post Reply Post Reply
Author
Message
apuhjee View Drop Down
Senior Member
Senior Member
Avatar

Joined: 02 September 2005
Location: United States
Status: Offline
Points: 130
Post Options Post Options   Thanks (0) Thanks(0)   Quote apuhjee Quote  Post ReplyReply Direct Link To This Post Topic: Status Bar: CAP NUM SCRL
    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.
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.172 seconds.