<?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 : Com ou ActiveX ?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Command Bars : Com ou ActiveX ?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 14 Jun 2026 11:29:00 +0000</pubDate>
  <lastBuildDate>Fri, 21 May 2010 23:17:26 +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=16720</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[Com ou ActiveX ? :  where i found a simplex sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58628&amp;title=com-ou-activex#58628</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6114">iproject</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 21 May 2010 at 11:17pm<br /><br />where i found a simplex sample using cocreateinstance ?]]>
   </description>
   <pubDate>Fri, 21 May 2010 23:17:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58628&amp;title=com-ou-activex#58628</guid>
  </item> 
  <item>
   <title><![CDATA[Com ou ActiveX ? : I think, because the controls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58626&amp;title=com-ou-activex#58626</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2531">Baldur</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 21 May 2010 at 1:55pm<br /><br />I think, because the controls are COM-Objects you must use the COM-API's like CoCreateInstance (first use "CoInitialize()").<DIV>You can import COM-Libraries to access the Properties and Methods on simply ways like ADO-Examples.</DIV><DIV>Than you can attach this to any windows.</DIV><DIV>&nbsp;</DIV><DIV>Normal OCX-Objects can be placed in dialogs by designer.</DIV>]]>
   </description>
   <pubDate>Fri, 21 May 2010 13:55:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58626&amp;title=com-ou-activex#58626</guid>
  </item> 
  <item>
   <title><![CDATA[Com ou ActiveX ? :  /* My code */HMODULE hDll;HWND...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58589&amp;title=com-ou-activex#58589</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6114">iproject</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 19 May 2010 at 4:49pm<br /><br />/* My code */<br><br>HMODULE hDll;<br>HWND hWndCtrl;<br>LPAtlAxWinInit&nbsp;&nbsp;&nbsp; AtlAxWinInit;<br><br>hDll&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = LoadLibrary( "atl.dll" );<br>AtlAxWinInit = ( LPAtlAxWinInit ) GetProcAddress( hDll, "AtlAxWinInit" );<br>AtlAxWinInit();<br><br>hWndCtrl = CreateWindowEx(<br>(DWORD)&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // nExStyle<br>(LPCTSTR) "AtlAxWin"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // cClsName<br>(LPCTSTR) "Codejock.CommandBars.13.2.1" , // cProgId<br>(DWORD)&nbsp;&nbsp; WS_CHILD | WS_VISIBLE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // style<br>(INT)&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // nLeft<br>(INT)&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // nTop<br>(INT)&nbsp;&nbsp;&nbsp;&nbsp; 100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // nWidth<br>(INT)&nbsp;&nbsp;&nbsp;&nbsp; 100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; , // nHeight<br>(HWND)&nbsp;&nbsp;&nbsp; hb_parnl( 1 )&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ,<br>&nbsp;NULL,<br>&nbsp;NULL,<br>&nbsp;NULL&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; );<br><br>/* My end code */<br><br>hWndCtrl return 0 always.<br><br>With <b>Codejock.SkinFrameWork.13.2.1</b><br>work fine in wxp and w7. more commandbar no.<br><br>someone can help ?<br>]]>
   </description>
   <pubDate>Wed, 19 May 2010 16:49:43 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58589&amp;title=com-ou-activex#58589</guid>
  </item> 
  <item>
   <title><![CDATA[Com ou ActiveX ? : sure,i use commandbars.13.2.1...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58588&amp;title=com-ou-activex#58588</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6114">iproject</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 19 May 2010 at 4:41pm<br /><br />sure,<br><br>i use commandbars.13.2.1 and work fine in winXP more now i trying use in windows seven and no work..<br><br>do you know why ? imcompatible with w7 ?<br>]]>
   </description>
   <pubDate>Wed, 19 May 2010 16:41:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58588&amp;title=com-ou-activex#58588</guid>
  </item> 
  <item>
   <title><![CDATA[Com ou ActiveX ? : This are two different controls. See...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58576&amp;title=com-ou-activex#58576</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2531">Baldur</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 19 May 2010 at 11:52am<br /><br />This are two different controls.<DIV></DIV>See at documentation.]]>
   </description>
   <pubDate>Wed, 19 May 2010 11:52:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58576&amp;title=com-ou-activex#58576</guid>
  </item> 
  <item>
   <title><![CDATA[Com ou ActiveX ? : Hi,what is the PROGID (Codejock.CommandBars.13.2.1...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58564&amp;title=com-ou-activex#58564</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6114">iproject</a><br /><strong>Subject:</strong> 16720<br /><strong>Posted:</strong> 19 May 2010 at 2:39am<br /><br />Hi,<br><br><span id="result_" ="short_text"><span style=": rgb(255, 255, 255);" title="qual é o progid referente ao COM e ao ActiveX ?" ="this.style.Color='#ebeff9'" ="this.style.Color='#fff'">what is the PROGID (<b>Codejock.CommandBars.13.2.1</b> or <b>Codejock.CommandBars<u>Frame</u>.13.2.1</b>) <br>references to ActiveX and COM ?</span></span><br><br>The realy i need know what is the correcty to use with Object COM ATL.dll<br>]]>
   </description>
   <pubDate>Wed, 19 May 2010 02:39:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16720&amp;PID=58564&amp;title=com-ou-activex#58564</guid>
  </item> 
 </channel>
</rss>