Print Page | Close Window

No keyboardTips on CommandBarControl

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=21615
Printed Date: 06 October 2024 at 9:00am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: No keyboardTips on CommandBarControl
Posted By: kris_s2
Subject: No keyboardTips on CommandBarControl
Date Posted: 30 April 2013 at 8:30am
Hello All, 
I am quite new to the xTreme Pro Suite Toolkit, so please bear with me.
I am using CodeJock v. 13.2.1 
I am using this library in vb project to add RibbonBar (Office like style)

I have added a ribbon, tabs and control to the ribbonbar.
So now I have Office like UI with Tabs, Groups, Controls, SystemButton (Home Button)
Now, I am trying to display keytips when user press Alt button.

I have enabled CommandBars Options:
 "CommandBars.Options.ShowKeyboardTips = True"

This gave me keytips for tabs and buttons inside the tab, 
I also managed to add keytip for homebutton (not there by defaurl), had to add .Caption to the SystemButton property like this:

    Dim m_pRibbonBar As RibbonBar
    Dim m_pSystemButton As CommandBarPopup
    Set m_pSystemButton = m_pRibbonBar.AddSystemButton()
    m_pSystemButton.IconId = ID_SYSTEM
    
    'Adding for accessibility (along with keyboardTips)
    m_pSystemButton.caption = "&S&B"

Now, I have added another control button (Help button) that I have located on the right sided of the ribbonbar like this:

    Dim testBtnRightHandSide As CommandBarControl
    Set testBtnRightHandSide = m_pRibbonBar.Controls.Add(xtpControlButton, ID_HELP, "&T&est")
    testBtnRightHandSide.Flags = xtpFlagRightAlign

For some reason when I press Alt button all other controls and tabs are getting keytips BUT not the Help button? 
Any idea what am I setting incorrectly? 
All suggestions much appreciated, thank you in advanced...
Regards
Kris



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