<?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 integrate results into C code?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : How to integrate results into C code?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 11 Jun 2026 08:55:18 +0000</pubDate>
  <lastBuildDate>Wed, 20 Aug 2008 12:42:20 +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=11893</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 integrate results into C code? : I did find the Toolkit users guide,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40169&amp;title=how-to-integrate-results-into-c-code#40169</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4455">vcor</a><br /><strong>Subject:</strong> 11893<br /><strong>Posted:</strong> 20 August 2008 at 12:42pm<br /><br />I did find the&nbsp; Toolkit users guide, section 4, Tutorial.&nbsp; Although It's written for an old VS, It seems to mostly apply to VS2008.&nbsp; At the completion, I get a bunch of errors. Do I need a different version of the toolkit to work with VS2008 or are there additional instructions to make it work with VS2008 (SP1)?<br><br>Is there an error in step 4 of the instructions? It indicates to add the code into the existing routine, but this didn't make sense to me as the existing code would never get executed after the return 0. I assumed you meant to say to replace the code (Which is what I tried).<br><br>These are the sort of errors I'm seeing:<br>1&gt;Compiling...<br>1&gt;MainFrm.cpp<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(28) : error C2248: 'CMDIFrameWndEx::GetThisMessageMap' : cannot access protected member declared in class 'CMDIFrameWndEx'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(321) : see declaration of 'CMDIFrameWndEx::GetThisMessageMap'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(43) : see declaration of 'CMDIFrameWndEx'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(43) : error C2509: 'OnCreate' : member function not declared in 'CMainFrame'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.h(10) : see declaration of 'CMainFrame'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(97) : error C2248: 'CMDIFrameWndEx::PreCreateWindow' : cannot access protected member declared in class 'CMDIFrameWndEx'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(238) : see declaration of 'CMDIFrameWndEx::PreCreateWindow'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(43) : see declaration of 'CMDIFrameWndEx'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(97) : error C2352: 'CMDIFrameWndEx::PreCreateWindow' : illegal call of non-static member function<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(238) : see declaration of 'CMDIFrameWndEx::PreCreateWindow'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(154) : error C3861: 'UpdateMDITabbedBarsIcons': identifier not found<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(162) : error C2352: 'CMDIFrameWnd::AssertValid' : illegal call of non-static member function<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxwin.h(4019) : see declaration of 'CMDIFrameWnd::AssertValid'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(167) : error C2352: 'CMDIFrameWnd::Dump' : illegal call of non-static member function<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxwin.h(4020) : see declaration of 'CMDIFrameWnd::Dump'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(176) : error C3861: 'ShowWindowsDialog': identifier not found<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(188) : error C2248: 'CMDIFrameWndEx::OnToolbarCreateNew' : cannot access protected member declared in class 'CMDIFrameWndEx'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(305) : see declaration of 'CMDIFrameWndEx::OnToolbarCreateNew'<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(43) : see declaration of 'CMDIFrameWndEx'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(188) : error C2352: 'CMDIFrameWndEx::OnToolbarCreateNew' : illegal call of non-static member function<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(305) : see declaration of 'CMDIFrameWndEx::OnToolbarCreateNew'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(275) : error C2352: 'CMDIFrameWndEx::LoadFrame' : illegal call of non-static member function<br>1&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; c:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxmdiframewndex.h(231) : see declaration of 'CMDIFrameWndEx::LoadFrame'<br>1&gt;f:\documents\visual studio 2008\projects\mdisample\mdisample\mainfrm.cpp(289) : error C3861: 'GetUserToolBarByIndex': identifier not found<br>]]>
   </description>
   <pubDate>Wed, 20 Aug 2008 12:42:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40169&amp;title=how-to-integrate-results-into-c-code#40169</guid>
  </item> 
  <item>
   <title><![CDATA[How to integrate results into C code? : Hi, There is Samples\CommandBars\DesignerSample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40132&amp;title=how-to-integrate-results-into-c-code#40132</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 11893<br /><strong>Posted:</strong> 20 August 2008 at 2:14am<br /><br /><P>Hi,</P><DIV>There is Samples\CommandBars\DesignerSample sample that loads xcb file.</DIV>]]>
   </description>
   <pubDate>Wed, 20 Aug 2008 02:14:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40132&amp;title=how-to-integrate-results-into-c-code#40132</guid>
  </item> 
  <item>
   <title><![CDATA[How to integrate results into C code? :  &amp;lt;&amp;gt;  /* Style Definitions...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40123&amp;title=how-to-integrate-results-into-c-code#40123</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4455">vcor</a><br /><strong>Subject:</strong> 11893<br /><strong>Posted:</strong> 19 August 2008 at 7:07pm<br /><br /><!--&#091;if gte mso 10&#093;><> /* Style Definitions */ table.MsoNormalTable	{mso-style-name:"Table Normal";	mso-tstyle-rowband-size:0;	mso-tstyle-colband-size:0;	mso-style-noshow:yes;	mso-style-priority:99;	mso-style-qformat:yes;	mso-style-parent:"";	mso-padding-alt:0in 5.4pt 0in 5.4pt;	mso-para-margin-top:0in;	mso-para-margin-right:0in;	mso-para-margin-bottom:10.0pt;	mso-para-margin-left:0in;	line-height:115%;	mso-pagination:widow-orphan;	font-size:11.0pt;	font-family:"Calibri","sans-serif";	mso-ascii-font-family:Calibri;	mso-ascii-theme-font:minor-latin;	mso-fareast-font-family:"Times New Roman";	mso-fareast-theme-font:minor-fareast;	mso-hansi-font-family:Calibri;	mso-hansi-theme-font:minor-latin;}<!&#091;endif&#093;-->In Commnad Bars Designer <span style="">&nbsp;</span>(CBD), <span style="">&nbsp;</span>I see how to create my menu and toolbars, butthere is no information about how to transfer the design into a C++project.<span style="">&nbsp; </span>There is nothing in the CBD helpabout it, nor could I find any help in the forums. I’m sure it’s somethingobvious I’m missing, but I can’d find a single word about what you do once you’vecompleted the design other than to save it into the .xcb file.<p>The web site products section talks about adding one-line ofcode to make it all work. What is this one-line and where does it go?<span style="">&nbsp; </span>Again, not a word about it in help.</p><p>Going into Visual Studio, the only change I found was underTools is a number of URLs for CodeJock. Is this the only integration there is?<span style="">&nbsp; </span>I was sort of expecting some way to get tothe programs from within Visual Studio.</p><p>Another really minor note about CBD help – it doesn’t tellyou how you start the program. Had to dig around to find the executable under theUtilites folder.<span style="">&nbsp; </span>Not quire sure why all theuseful programs are buried under so many folders <span style="">&nbsp;</span>in the CodeJock’s directory and the itemsleast likely to be used are stuck near the top (uninstall, license, releasenotes, toolkit deployment). </p>]]>
   </description>
   <pubDate>Tue, 19 Aug 2008 19:07:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11893&amp;PID=40123&amp;title=how-to-integrate-results-into-c-code#40123</guid>
  </item> 
 </channel>
</rss>