<?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 : Imagemanager and listview</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : General Discussion : Imagemanager and listview]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 13 Jun 2026 10:04:59 +0000</pubDate>
  <lastBuildDate>Tue, 12 Feb 2008 11:37:33 +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=9557</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[Imagemanager and listview : Thanks OlegI&amp;#039;m going to post...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31102&amp;title=imagemanager-and-listview#31102</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3742">foleypt</a><br /><strong>Subject:</strong> 9557<br /><strong>Posted:</strong> 12 February 2008 at 11:37am<br /><br />Thanks Oleg<br><br>I'm going to post here for anyone interested&nbsp; some tips on how to switch a project from&nbsp; VB6 standard listviews to Codejock ones<br><br>I haven't done a treeview control yet, but the process will be the same..I imagine that most of the below can be done as a batch convert with a good text editor<br><br>Am I right in saying that swapping over to the other codejock controlsequivalents is as simple as the above procedure and that there arefunctional and code equivalents&nbsp; for each of the vb6 controls inMSCOMCTL.OCX?<br><br>In VB6 add xtreme suite controls activex control as a component to the project<br><br>save and quit the project<br><br>back up your source files<br><br>edit using a text editor for each .frm file that has a vb6 listview add line<br><br>after line "VERSION 5.00"<br>and before "begin vb.form"<br><br>add<br>Object = "{A8E5842E-102B-4289-9D57-3B3F5B5E15D3}#11.2#0"; "Codejock.Controls.v11.2.2.ocx"<br><br>if the form has no other of the below<br><br>tabstrip toolbar statusbar progressbar treeview listview imagelist slider<br><br>then you can remove <br><br>Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"<br><br>Do a copy replace, search for<br><br>Begin MSComctlLib.ListView <br><br>replace with<br><br>Begin XtremeSuiteControls.ListView <br><br>Do a copy replace, search for<br><br>MSComctlLib.ListItem<br><br>replace with<br><br>XtremeSuiteControls.ListViewItem<br><br>Do a copy replace, search for<br><br>as listitem<br><br>replace with<br><br>as ListViewItem<br><br>Save the .frm files, open the project<br><br>all calls to ListItems.Add will have to be modified, there might be an extraparameter for smallicons consts<br><br>you will have to add imagemanagers and fill them giving them numeric consts to identify the icons (vb listviews used alphanumeric consts) <br><br>ListItems.icons becomes a set and references the icons collection of the imagemanager<br><br>ListItems.SmallIcons goes away<br><br>set a value for lvMenuItems.IconSize = and hey presto you are now using codejock listviews<br><br><br>]]>
   </description>
   <pubDate>Tue, 12 Feb 2008 11:37:33 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31102&amp;title=imagemanager-and-listview#31102</guid>
  </item> 
  <item>
   <title><![CDATA[Imagemanager and listview : Hello,  Yes, our Version of...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31074&amp;title=imagemanager-and-listview#31074</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6851">Oleg</a><br /><strong>Subject:</strong> 9557<br /><strong>Posted:</strong> 12 February 2008 at 4:53am<br /><br />Hello,<DIV>&nbsp;</DIV><DIV>Yes, our Version of TreeView and ListView supports our ImageManager. See SuiteControls &nbsp;sample from last release.</DIV>]]>
   </description>
   <pubDate>Tue, 12 Feb 2008 04:53:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31074&amp;title=imagemanager-and-listview#31074</guid>
  </item> 
  <item>
   <title><![CDATA[Imagemanager and listview : Hi AllI am a new codejock user...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31048&amp;title=imagemanager-and-listview#31048</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3742">foleypt</a><br /><strong>Subject:</strong> 9557<br /><strong>Posted:</strong> 11 February 2008 at 1:06pm<br /><br />Hi All<br><br>I am a new codejock user and am integrating the codejock commandbars into a large existing VB app.<br><br>I need some help using the Imagemanager and listview and treeview controls.<br><br>I wish to use the Imagemanager&nbsp; because of it's support for alpha transparancy and it's ease in switching between difference sizes for icons.<br><br>Many of same icons I use for the menus and tool bars are also used in treeview and listview controls (currently standard VB6 controls)<br><br>I would like to ditch my vb imagelist controls.<br><br>Is there any way to reference Imagemanager&nbsp; from listview controls?<br><br>Would this be possible if I switched to the codejock control suit versions?<br><br>Does there exist any example code of Imagemanager&nbsp; and listview&nbsp; or treeview controls working together in vb6?<br><br>Thanking in advance, codejock was exactly what I was looking for (in fact wish I had found it before I had spend some months trying to work with the valiant but limited vbaccelarator controls)<br><br><br>]]>
   </description>
   <pubDate>Mon, 11 Feb 2008 13:06:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=9557&amp;PID=31048&amp;title=imagemanager-and-listview#31048</guid>
  </item> 
 </channel>
</rss>