<?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 : ShowTabWorkSpace is NULL</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : ShowTabWorkSpace is NULL]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 18:21:28 +0000</pubDate>
  <lastBuildDate>Fri, 01 Feb 2013 14:48:58 +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=6343</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[ShowTabWorkSpace is NULL : Share your example with community...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=69635&amp;title=showtabworkspace-is-null#69635</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5702">vicos</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 01 February 2013 at 2:48pm<br /><br />Share your example with community please...]]>
   </description>
   <pubDate>Fri, 01 Feb 2013 14:48:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=69635&amp;title=showtabworkspace-is-null#69635</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Hi,  Glad you find it.  Sorry...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20358&amp;title=showtabworkspace-is-null#20358</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 13 February 2007 at 7:56am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Glad you find it. </DIV><DIV>Sorry I didn't see you added post with code.</DIV>]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 07:56:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20358&amp;title=showtabworkspace-is-null#20358</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : At least, i did it, the only way...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20347&amp;title=showtabworkspace-is-null#20347</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1386">mav50202</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 13 February 2007 at 5:19am<br /><br />At least, i did it, the only way is put the commanbar control in a toolbar of Visual Foxpro, with that way you will get that the windows is not over the commandbar.<DIV>&nbsp;</DIV><DIV>Is important set the property setminimumwidth.</DIV><DIV>&nbsp;</DIV><DIV>Thank you for all.</DIV>]]>
   </description>
   <pubDate>Tue, 13 Feb 2007 05:19:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20347&amp;title=showtabworkspace-is-null#20347</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Thank very much for your help...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20211&amp;title=showtabworkspace-is-null#20211</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1386">mav50202</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 08 February 2007 at 12:25pm<br /><br /><font color="#ff0066"><font color="#000000">Thank very much for your help , here is the sample.</font><br><br>INIT METHOD (MAIN FORM)</font><br><br>PUBLIC commandbars<br><br>commandbars = thisform.commandBars<br><br>thisform.createribbonbar()<br><br>local StatusBar As XtremeCommandBars.StatusBar<br>StatusBar = this.CommandBars.StatusBar<br>StatusBar.Visible = .t.<br><br>StatusBar.AddPane(0)<br>oPane = StatusBar.AddPane(1)<br>oPane.width = 70<br>oPane = StatusBar.AddPane(2)<br>oPane.width = 50<br>StatusBar.AddPane(ID_INDICATOR_CAPS)<br>StatusBar.AddPane(ID_INDICATOR_NUM)<br>StatusBar.AddPane(ID_INDICATOR_SCRL)<br><br>RibbonBar.EnableFrameTheme() <br><br>CommandBars.Options.KeyboardCuesShow = 2<br><br>CommandBars.setmdIClient(thisform.hWnd)<br><br>CommandBars.EnableCustomization(.t.)<br><br>public Workspace As CommandBars.TabWorkspace<br><br>tabworkspace = commandbars.showTabWorkspace(.t.)<br>tabworkspace.EnableGroups()<br><br><br><font color="#ff0033"><u>CREATERIBBONBAR METHOD </u><br><br><font color="#000000">PUBLIC RibbonBar As XtremeCommandBars.RibbonBar <br>RibbonBar = CommandBars.AddRibbonBar("The Ribbon")<br>RibbonBar.EnableDocking(1048576)<br>RibbonBar.Minimized = .t.<br><br>local ControlAbout As XtremeCommandBars.CommandBarControl <br><br>ControlFile = RibbonBar.AddSystemButton()<br>ControlFile.IconId = ID_SYSTEM_ICON<br>ControlFile.CommandBar.Controls.Add(1, ID_FILE_NEW, "&amp;New", .f., .f.)<br>ControlFile.CommandBar.Controls.Add(1, ID_FILE_OPEN, "&amp;Open...", .f., .f.)<br>oControl = ControlFile.CommandBar.Controls.Add(1, ID_FILE_PRINT_SETUP, "Pr&amp;int Setup...", .f., .f.)<br>oControl.BeginGroup = .t.<br>oControl = ControlFile.CommandBar.Controls.Add(1, ID_FILE_MRU_FILE1, "Recent File", .f., .f.)<br>oControl.BeginGroup = .t.<br>oControl.Enabled = .f.<br>oControl = ControlFile.CommandBar.Controls.Add(1, ID_APP_EXIT, "E&amp;xit", .f., .f.)<br>oControl.BeginGroup = .t.<br>ControlFile.CommandBar.SetIconSize(32, 32)<br><br>ControlAbout = RibbonBar.Controls.Add(1, ID_APP_ABOUT, "&amp;About", .f., .f.)<br>ControlAbout.Flags =1<br><br>TabHome = RibbonBar.InsertTab(0, "&amp;Home")<br>TabHome.Id = ID_TAB_HOME<br><br>GroupFile = TabHome.Groups.AddGroup("File", ID_GROUP_FILE)<br>GroupFile.Add(1, ID_FILE_NEW, "&amp;New", .f., .f.)<br>GroupFile.Add(1, ID_FILE_OPEN, "&amp;Open", .f., .f.)<br>GroupFile.Add(1, ID_FILE_CLOSE, "&amp;Close", .f., .f.)<br>ControlSaveAs = GroupFile.Add(4, ID_FILE_SAVE, "&amp;Save", .f., .f.)<br>ControlSaveAs.CommandBar.Controls.Add(1, ID_FILE_SAVE, "&amp;Save", .f., .f.)<br>ControlSaveAs.CommandBar.Controls.Add(1, ID_FILE_SAVE_AS, "Save &amp;As...", .f., .f.)<br>ControlPrint = GroupFile.Add(4, ID_FILE_PRINT, "Print", .f., .f.)<br>ControlPrint.CommandBar.Controls.Add(1, ID_FILE_PRINT, "&amp;Print", .f., .f.)<br>ControlPrint.CommandBar.Controls.Add(1, ID_FILE_PRINT_SETUP, "Print &amp;Setup...", .f., .f.)<br>ControlPrint.BeginGroup = .t.<br><br><font color="#ff0000">&#091;....&#093; And the rest code for menus.<br><br></font></font></font><font color="#ff0033"><font color="#000000"><font color="#ff0000"><br><u>COMMANDBARS.EXECUTE METHOD</u><br><br><font color="#000000">LPARAMETERS control<br><br>DO case<br><br>&nbsp;&nbsp;&nbsp; Case control.id = 57648<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; thisform.LoadNewDoc()<br><br>ENDCASE</font><br><br></font></font></font><u><font color="#ff0033"><font color="#000000"><font color="#ff0000">LOADNEWDOC METHOD</font></font></font></u><br><font color="#ff0033"><font color="#000000"><font color="#ff0000"><br><font color="#000000">DO FORM c:\frmdocument noshow<br><br>CommandBars.EnableOffice2007FrameHandle( frmdocument.hwnd )</font><br></font></font></font><br>frmdocument.show()<br>]]>
   </description>
   <pubDate>Thu, 08 Feb 2007 12:25:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20211&amp;title=showtabworkspace-is-null#20211</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Hi, Actually we never tested...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20205&amp;title=showtabworkspace-is-null#20205</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 08 February 2007 at 11:41am<br /><br />Hi,<DIV>Actually we never tested it in FoxPro and never write that CommandBars support it. Attach this sample, I will debug it.</DIV>]]>
   </description>
   <pubDate>Thu, 08 Feb 2007 11:41:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20205&amp;title=showtabworkspace-is-null#20205</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Ok, but i need your help again,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20198&amp;title=showtabworkspace-is-null#20198</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1386">mav50202</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 08 February 2007 at 10:25am<br /><br />Ok, but i need your help again, <img src="http://forum.codejock.com/smileys/smiley5.gif" border="0" align="absmiddle">&nbsp; i dont know what is the form wich set it in setclient method:<br>The main form<br>the child form or forms<br><br>Have i set it setclient only one time for the main form??? or for every child form??<br><br>And in adittion i have other problem with the child forms, the child form is over the toolbar and not respect this area.<br><br>Example:<br><br><img src="uploads/20070208_101844_Mainandchild.jpg" border="0"><br><br>]]>
   </description>
   <pubDate>Thu, 08 Feb 2007 10:25:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20198&amp;title=showtabworkspace-is-null#20198</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Hi, CommandBars can&amp;#039;t find...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20156&amp;title=showtabworkspace-is-null#20156</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 07 February 2007 at 3:12pm<br /><br />Hi,<DIV>CommandBars can't find MDI client in foxPro window.</DIV><DIV>Set it using SetMDIClient method.</DIV>]]>
   </description>
   <pubDate>Wed, 07 Feb 2007 15:12:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20156&amp;title=showtabworkspace-is-null#20156</guid>
  </item> 
  <item>
   <title><![CDATA[ShowTabWorkSpace is NULL : Hi, friends.I have a problem with...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20150&amp;title=showtabworkspace-is-null#20150</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1386">mav50202</a><br /><strong>Subject:</strong> 6343<br /><strong>Posted:</strong> 07 February 2007 at 1:40pm<br /><br />Hi, friends.<br><br>I have a problem with this code in Visual Foxpro 9 SP1<br><br>workspace = CommandBars.ShowTabWorkspace(.t.)<br>workspace.EnableGroups()<br><br>When i execute this code, WorkSpace not is a object else is NULL, then i dont access to the properties and methods of TabWorkSpace.<br><br>I need your help.<br><br>Thank very much for all.<br><br><br>]]>
   </description>
   <pubDate>Wed, 07 Feb 2007 13:40:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=6343&amp;PID=20150&amp;title=showtabworkspace-is-null#20150</guid>
  </item> 
 </channel>
</rss>