Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Command Bars
  New Posts New Posts RSS Feed - Creating tear-off popups
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Creating tear-off popups

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

Joined: 11 June 2004
Status: Offline
Points: 167
Post Options Post Options   Thanks (0) Thanks(0)   Quote nighthawk Quote  Post ReplyReply Direct Link To This Post Topic: Creating tear-off popups
    Posted: 27 July 2006 at 8:30pm
I want to create a tear-off popup menu like in the example below.  How do I set this up using code?  The only sample I found uses the Designer Studio to set it up but I need to do it with code.





Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post Posted: 28 July 2006 at 12:32pm
Hello,
from Office2003 sample:
 
Set ControlColorPopup = .Add(xtpControlSplitButtonPopup, ID_COLOR_POPUP, "Text Color")
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_BLUE, "Blue"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_YELLOW, "Yellow"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_GREEN, "Green"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_RED, "Red"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_PURPLE, "Purple"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_CYAN, "Cyan"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_ORANGE, "Orange"
        ControlColorPopup.CommandBar.Controls.Add xtpControlButton, ID_COLOR_MAGENTA, "Magenta"
       
        ControlColorPopup.CommandBar.SetTearOffPopup "Colors", IDR_COLORSBAR, 150
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
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.047 seconds.