<?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 : ReportControl as TreeView</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : ReportControl as TreeView]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 11:03:43 +0000</pubDate>
  <lastBuildDate>Fri, 17 Apr 2009 11:01:04 +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=13961</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[ReportControl as TreeView : I use this one ..\Samples\Acti...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48070&amp;title=reportcontrol-as-treeview#48070</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 11:01am<br /><br />I use this one ..\Samples\ActiveX\ReportControl\VB\ReportSample with frmTreeView.frm to modify and have now +/- PLUS some other icon. <DIV>&nbsp;</DIV><DIV>check ActiveX flags for Report:</DIV><DIV>FocusSubItems <FONT color=#008000 size=2>EditOnClick ...</FONT></DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 11:01:04 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48070&amp;title=reportcontrol-as-treeview#48070</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : Hi Mark,  thanks again ! I&#180;ll...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48069&amp;title=reportcontrol-as-treeview#48069</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=729">tobi</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 10:54am<br /><br />Hi Mark,<DIV>&nbsp;</DIV><DIV>thanks again ! Iīll try it ...&nbsp;What do you mean with "citated sample" ?</DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 10:54:39 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48069&amp;title=reportcontrol-as-treeview#48069</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : 1st question - as far as you assign...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48067&amp;title=reportcontrol-as-treeview#48067</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 10:45am<br /><br /><DIV>1st&nbsp; question - as far as you assign your own icons - may be. Try....</DIV><DIV>2nd question - yes - try this code modification for citated sample - you will have +/- AND extra ICON</DIV><DIV>Function AddReportRecord(Parent As ReportRecord, Read As Boolean, Subject As String, From As String, Sent As Date, Size As Long, Price As Single) As ReportRecord<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp; ' Adds a record to current ReportControl.<BR>&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Dim Record As ReportRecord<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If Parent Is Nothing Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Record = wndReportControl.Records.Add()<BR>&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set Record = Parent.Childs.Add()<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Dim Item As ReportRecordItem<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem("")<BR>&nbsp;&nbsp;&nbsp; Item.Icon = IIf(Read, 3, 2)<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem("")<BR>&nbsp;&nbsp;&nbsp; Item.HasCheckbox = True<BR>&nbsp;&nbsp;&nbsp; Item.TristateCheckbox = True<BR>&nbsp;&nbsp;&nbsp; Item.Checked = True<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(Subject)<BR>&nbsp;&nbsp;&nbsp; Item.Icon = 3<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Record.AddItem From<BR>&nbsp;&nbsp;&nbsp; Record.AddItem Sent<BR>&nbsp;&nbsp;&nbsp; Record.AddItem Size<BR>&nbsp;&nbsp;&nbsp; Set Item = Record.AddItem(Price)<BR>&nbsp;&nbsp;&nbsp; Item.Format = "$ %s"<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; Set AddReportRecord = Record<BR>End Function<BR></DIV><DIV>3rd question - sure - as you allow to select subitems - there is a flag for this</DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 10:45:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48067&amp;title=reportcontrol-as-treeview#48067</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : So we are back at my initial questions:...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48066&amp;title=reportcontrol-as-treeview#48066</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=729">tobi</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 10:23am<br /><br />So we are back at my initial questions: <img src="http://forum.codejock.com/smileys/smiley2.gif" border="0"> <DIV>&nbsp;</DIV><DIV><DIV>1) Can I replace the &#091;+&#093; and &#091;-&#093; icons to smaller ones ?</DIV><DIV>2)&nbsp;Can I display an icon next to this icons</DIV><DIV>3) Can I make selection only the text and not the whole column width ?</DIV><DIV>&nbsp;</DIV><DIV>I donīt know how to do this with ReportControl ...</DIV></DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 10:23:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48066&amp;title=reportcontrol-as-treeview#48066</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : In this case you already had it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48063&amp;title=reportcontrol-as-treeview#48063</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 9:42am<br /><br />In this case you already had it ..\Samples\ActiveX\ReportControl\VB\ReportSample with frmTreeView.frm. Use it as starting point.]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 09:42:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48063&amp;title=reportcontrol-as-treeview#48063</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : Dear Mark,  I do not need to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48061&amp;title=reportcontrol-as-treeview#48061</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=729">tobi</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 9:35am<br /><br />Dear Mark,<DIV>&nbsp;</DIV><DIV>I do not need to display file system structure. It just should show how it should look like !</DIV><DIV>Do you think you could provide me a sample in VB6 or .net how I can do this ?</DIV><DIV>&nbsp;</DIV><DIV>Thank you</DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 09:35:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48061&amp;title=reportcontrol-as-treeview#48061</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : Techically - yes you can do it....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48060&amp;title=reportcontrol-as-treeview#48060</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 9:16am<br /><br />Techically - yes you can do it. Logically - in term of file structure hierarchy - it depends. See how Microsoft is moving to simplified top-level virtual file structure - all this MyDocuments and similar are attempts to hide complicated file tree and present it in more simple way.]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 09:16:16 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48060&amp;title=reportcontrol-as-treeview#48060</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : Hi Mark,   thank you very much...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48059&amp;title=reportcontrol-as-treeview#48059</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=729">tobi</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 17 April 2009 at 8:17am<br /><br />Hi Mark, <DIV>&nbsp;</DIV><DIV>thank you very much for your answers and samples ! But they donīt really solve my questions/problems. </DIV><DIV>I have to do a visual appearence as most as identical to a treeview - combined with the features of ReportControl (e.g. Markup ).</DIV><DIV>&nbsp;</DIV><DIV>Please have a look at the attached picture - this is how it should look like ...</DIV><DIV>&nbsp;</DIV><DIV><img src="http://forum.codejock.com/uploads/20090417_081502_Unbenannt.JPG" border="0"></DIV><DIV>&nbsp;</DIV><DIV>Please let me know if this is possible with ReportControl ...</DIV><DIV>&nbsp;</DIV><DIV>Thanks a lot</DIV>]]>
   </description>
   <pubDate>Fri, 17 Apr 2009 08:17:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48059&amp;title=reportcontrol-as-treeview#48059</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : As for tree view - look in current...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48018&amp;title=reportcontrol-as-treeview#48018</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 16 April 2009 at 2:20pm<br /><br />As for tree view - look in current ReportSample - <a href="https://forum.codejock.com/uploads/DemoVersi&#111;n/ReportSampleSatic.rar" target="_blank">https://forum.codejock.com/uploads/DemoVersion/ReportSampleSatic.rar</A><DIV>here run from menu Report Control - Control Test - Tree View Dialog </DIV><DIV><DIV>here run from menu Report Control - Control Test - Properties Test (here you have new version of SelectAll button "A" and old version "a")</DIV><DIV>you can add branches to any item with mouse right button click</DIV><DIV>&nbsp;</DIV></DIV>]]>
   </description>
   <pubDate>Thu, 16 Apr 2009 14:20:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=48018&amp;title=reportcontrol-as-treeview#48018</guid>
  </item> 
  <item>
   <title><![CDATA[ReportControl as TreeView : https://forum.codejock.com/upl...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=47818&amp;title=reportcontrol-as-treeview#47818</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 13961<br /><strong>Posted:</strong> 13 April 2009 at 10:33am<br /><br /><a href="https://forum.codejock.com/uploads/DemoVersi&#111;n/EditVirtualListIc&#111;nStatic.rar" target="_blank">https://forum.codejock.com/uploads/DemoVersion/EditVirtualListIconStatic.rar</A>]]>
   </description>
   <pubDate>Mon, 13 Apr 2009 10:33:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=13961&amp;PID=47818&amp;title=reportcontrol-as-treeview#47818</guid>
  </item> 
 </channel>
</rss>