<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : How to popup a MiniToolBar on a screen?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : How to popup a MiniToolBar on a screen?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 17:58:29 +0000</pubDate>
  <lastBuildDate>Mon, 14 Feb 2011 09:48:08 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=17863</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : This is why I think the MiniToolBar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62608&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62608</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 9:48am<br /><br />This is why I think the MiniToolBar will not work for you in this instance!<br><br>What you need is the floating CommandBar ToolBar instead which is in the first post. If the issue is due to the other post <a href="forum_posts.asp?TID=17845&amp;title=how-to-setfocus-to-a-combobox" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=17845&amp;title=how-to-setfocus-to-a-combobox</a><br><br>Then why not instead of using the Codejock xtpControlComboBox ComboBox why not use a VB.Combobox and link this into the Toolbar.<br><br><table width="99%"><tr><td><pre class="BBcode"><br>Dim custControl As CommandBarControlCustom<br><br>Set custControl = ToolBar.Controls.Add(xtpControlCustom, ID_TOOLBAR_COMBO, vbNullString)<br>custControl.Handle = cboCombo.hWnd<br></pre></td></tr></table><br><br>That way you have access to all the events like SetFocus etc!<br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 09:48:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62608&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62608</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : &amp;gt; SetCursorPos 100, 100This...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62607&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62607</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1570">Jebo</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 9:43am<br /><br />&gt; SetCursorPos 100, 100<br>This "solution" I was allready last friday checked. The problem is here, that the mouse pointer will move without the users will "like from a ghost hand" .<br><br>This irritate the user and is too much dirty coding. <img src="http://forum.codejock.com/smileys/smiley13.gif" border="0" alt="Disapprove" title="Disapprove" /><br><br>*hope you do understand what I mean (because my bad english!)<br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 09:43:02 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62607&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62607</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : Ah ok,  Well like I said the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62606&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62606</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 9:25am<br /><br />Ah ok,<br><br>Well like I said the MiniToolBar is designed to be used for formatting highlighted text. <b>But </b>with a little workaround you can programmtically reposition the Mouse Cursor to any location on screen just before you display the MiniToolBar! Therefore the MiniToolBar should gain focus <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0" alt="Wink" title="Wink" /><br><br><table width="99%"><tr><td><pre class="BBcode"><br>Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long<br><br>' Add the code below to your event to show the MiniToolBar<br>SetCursorPos 100, 100<br>oMiniToolbar.PopupMiniToolBar , 1600, 1600<br></pre></td></tr></table><br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 09:25:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62606&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62606</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? :  Hi,what I want is this: http...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62605&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62605</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1570">Jebo</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 9:10am<br /><br />Hi,<br><br>what I want is this: <a href="http://forum.codejock.com/forum_posts.asp?TID=17845&amp;title=how-to-setfocus-to-a-combobox" target="_blank">http://forum.codejock.com/forum_posts.asp?TID=17845&amp;title=how-to-setfocus-to-a-combobox</a><br><br>But this is also not possible because of a BUG or any else. So I was looking for a workaround...<br><br>My idea was now, to hide the minitoolbar and show it&nbsp; immediately again on exacvtly the same screen-position like before. But now, with focused cursor inside the ComboBox!<br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 09:10:05 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62605&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62605</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : Hi,Can I ask what you intend to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62602&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62602</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 8:12am<br /><br />Hi,<br><br>Can I ask what you intend to use the MiniToolBar for?<br><br>The reason I ask is that it is specifically designed for Formatting text a user has highlighted. <br><br>Link: <a href="http://office.microsoft.com/en-us/word-help/add-&#102;ormatting-to-your-&#100;ocument-by-using-the-mini-toolbar-HA010173624.aspx" target="_blank">http://office.microsoft.com/en-us/word-help/add-formatting-to-your-document-by-using-the-mini-toolbar-HA010173624.aspx</a><br><br>If this is not what you are what to use it for then it won't work for you as it's desgined to appear when a user has highlighted text to give them required options, which means the users mouse is close by the XY co-cordinates.<br><br>If you are looking for different functionality then I believe you may have to stick with the first sample I posted, which is to create a Floating CommandBar ToolBar.<br><br>Sorry if I have not helped.<br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 08:12:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62602&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62602</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? :  Hi,Sorry about that, I have...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62596&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62596</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 6:34am<br /><br />Hi,<br><br>Sorry about that, I have never used the MiniToolBar before.<br><br>I have created a new sample project for you to test out.<br><br><img src="uploads/2960/MiniToolBar_Popup.png" border="0" /><br><br>Sample: <a href="uploads/2960/MiniToolBar_Popup.rar" target="_blank">uploads/2960/MiniToolBar_Popup.rar</a><br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 06:34:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62596&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62596</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : Thank you! But what I mean is...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62595&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62595</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1570">Jebo</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 6:16am<br /><br />Thank you! But what I mean is a really "Minitoolbar" (<u>without a caption</u>!) not a popupform!<br><br>&gt;&gt; <b>Dim </b><b>oMyMiniToolbar </b><b>As MiniToolBar</b><br><br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 06:16:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62595&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62595</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? :   Hi Jebo,I have attached a...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62592&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62592</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 14 February 2011 at 3:54am<br /><br />Hi Jebo,<br><br>I have attached a small sample of how to create a ToolBar that starts in a floating position and can be positioned anywhere on screen as you require. I have created 4 TextBoxes and on GotFocus of each box the ToolBar will position itself above the selected control.<br><br><img src="uploads/2960/ToolBar_Popup.png" height="375" width="543" border="0" /><br><br>Sample: <a href="uploads/2960/ToolBar_Popup.rar" target="_blank">uploads/2960/ToolBar_Popup.rar</a><br><br>Is this what you're looking for?<br><br>]]>
   </description>
   <pubDate>Mon, 14 Feb 2011 03:54:54 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62592&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62592</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : Hello Support?I&amp;#039;ve also opened...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62562&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62562</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1570">Jebo</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 11 February 2011 at 11:22am<br /><br />Hello Support?&nbsp;<img src="http://forum.codejock.com/smileys/smiley13.gif" border="0" alt="Disapprove" title="Disapprove" /><br><br>I've also opened a Support-ticket - but no respose at all...<br>]]>
   </description>
   <pubDate>Fri, 11 Feb 2011 11:22:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62562&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62562</guid>
  </item> 
  <item>
   <title><![CDATA[How to popup a MiniToolBar on a screen? : How do I popup a MiniToolBar on...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62550&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62550</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1570">Jebo</a><br /><strong>Subject:</strong> 17863<br /><strong>Posted:</strong> 10 February 2011 at 12:44pm<br /><br />How do I popup a MiniToolBar on a specific screen-position?<br><br>For example: This will not work: <b>oMiniToolbar.PopupMiniToolBar , 1600, 1600</b><br><br>So do I need a special Flag or any else???<br>]]>
   </description>
   <pubDate>Thu, 10 Feb 2011 12:44:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17863&amp;PID=62550&amp;title=how-to-popup-a-minitoolbar-on-a-screen#62550</guid>
  </item> 
 </channel>
</rss>