<?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 : Datasource and DataBinding</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Datasource and DataBinding]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 15 May 2026 09:45:33 +0000</pubDate>
  <lastBuildDate>Fri, 24 Jul 2009 08:13:23 +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=14635</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[Datasource and DataBinding : For ADO should be fine (at least...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=51262&amp;title=datasource-and-databinding#51262</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 24 July 2009 at 8:13am<br /><br />For ADO should be fine (at least in known environments - may be Dataflex have some restrictions?)]]>
   </description>
   <pubDate>Fri, 24 Jul 2009 08:13:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=51262&amp;title=datasource-and-databinding#51262</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : I am using ADO  ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50869&amp;title=datasource-and-databinding#50869</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5343">Phoenix999</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 10 July 2009 at 7:50pm<br /><br />I am using ADO]]>
   </description>
   <pubDate>Fri, 10 Jul 2009 19:50:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50869&amp;title=datasource-and-databinding#50869</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : If you are using a VB6 datasource...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50864&amp;title=datasource-and-databinding#50864</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2676">jpbro</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 10 July 2009 at 1:38pm<br /><br />If you are using a VB6 datasource class as your datasource, the CJ RC doesn't support it.<br>]]>
   </description>
   <pubDate>Fri, 10 Jul 2009 13:38:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50864&amp;title=datasource-and-databinding#50864</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : Ok Firstly I am using Visual DataFlex...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50804&amp;title=datasource-and-databinding#50804</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5343">Phoenix999</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 09 July 2009 at 4:12am<br /><br />Ok Firstly I am using Visual DataFlex as my info shows so a sample would be a waste of time.<br>Now sorry to labour on this but I am trying to get this working as I expect it should.<br><br>Now the code in the sample is:<br><br>Private Sub ShowRecords(Table as String)<br>&nbsp;&nbsp;&nbsp; ' show records<br>&nbsp;&nbsp;&nbsp; If not Rs.State = adStateClosed Then Rs.Close<br>'&nbsp;&nbsp;&nbsp; Rs.CursorType = adOpenStatic<br>&nbsp;&nbsp;&nbsp; Rs.CursorLocation = adUseClient<br>&nbsp;&nbsp;&nbsp; Rs.Open "select * from " &amp; "&#091;" &amp; Table &amp; "&#093;", Con<br>&nbsp;&nbsp;&nbsp; Set wndRecords.DataManager.DataSource = Rs<br>&nbsp;&nbsp;&nbsp; wndRecords.DataManager.DataBind&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; &lt;----- databind here what is the rest of this code doing? <br>&nbsp;&nbsp;&nbsp; ' add empty header row<br>&nbsp;&nbsp;&nbsp; wndRecords.PaintManager.HeaderRowsDividerStyle = xtpReportFixedRowsDividerOutlook<br>&nbsp;&nbsp;&nbsp; wndRecords.HeaderRecords.DeleteAll<br>&nbsp;&nbsp;&nbsp; wndRecords.PopulateHeaderRows<br>&nbsp;&nbsp;&nbsp; Dim Record as ReportRecord<br>&nbsp;&nbsp;&nbsp; Set Record = wndRecords.DataManager.CreateEmptyRecord<br>&nbsp;&nbsp;&nbsp; If Record is Nothing Then Exit Sub<br>&nbsp;&nbsp;&nbsp; Dim HeaderRecord as ReportRecord<br>&nbsp;&nbsp;&nbsp; Set HeaderRecord = wndRecords.HeaderRecords.Add<br>&nbsp;&nbsp;&nbsp; Dim i as Integer<br>&nbsp;&nbsp;&nbsp; For i = 0 to Record.ItemCount - 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HeaderRecord.AddItem Record.item(i).Value<br>&nbsp;&nbsp;&nbsp; Next<br>&nbsp;&nbsp;&nbsp; wndRecords.ShowHeaderRows = True<br>&nbsp;&nbsp;&nbsp; wndRecords.HeaderRowsAllowEdit = True<br>&nbsp;&nbsp;&nbsp; wndRecords.PopulateHeaderRows<br>&nbsp;&nbsp;&nbsp; Set Record = Nothing<br><br><br>This appears to me that there is more than just setting the Datasource property to allow the data to display. Is this correct?<br><br>]]>
   </description>
   <pubDate>Thu, 09 Jul 2009 04:12:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50804&amp;title=datasource-and-databinding#50804</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding :   Phoenix999 wrote:So are you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50715&amp;title=datasource-and-databinding#50715</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 06 July 2009 at 9:52am<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Phoenix999" alt="Originally posted by Phoenix999" style="vertical-align: text-bottom;" /> <strong>Phoenix999 wrote:</strong><br /><br /><BR>So are you saying that the data should be shown automatically?<BR></td></tr></table> <DIV>&nbsp;</DIV><DIV>Absolutly ! It's the meaning of databinding :)</DIV><DIV>If you run the sample app made by codejock (without changing something), did you have only the columns headers ?</DIV><DIV>If yes, can you make a sample with some data that isn't working for you ?</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 06 Jul 2009 09:52:45 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50715&amp;title=datasource-and-databinding#50715</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : Yes I saw the sample and And that...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50648&amp;title=datasource-and-databinding#50648</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5343">Phoenix999</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 03 July 2009 at 8:43pm<br /><br />Yes I saw the sample and And that is exactly what I am doing. <br><br>However all I get is the header row with the column names-there is no data being shown.<br><br>Someone else has asked the same question on this forum and got no answer.<br><br>So are you saying that the data should be shown automatically?<br><br>If so then it isnt happening for me- hence the original question.<br><br><br>]]>
   </description>
   <pubDate>Fri, 03 Jul 2009 20:43:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50648&amp;title=datasource-and-databinding#50648</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding :   Phoenix999 wrote:The ReportControls...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50636&amp;title=datasource-and-databinding#50636</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 03 July 2009 at 12:57pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by Phoenix999" alt="Originally posted by Phoenix999" style="vertical-align: text-bottom;" /> <strong>Phoenix999 wrote:</strong><br /><br /><BR>The ReportControls DataSource I just don't get.<BR><BR>Once attached you still need to iterate to create columns<BR>Seems to defeat the purpose of the DataSouce.<BR><BR>Am I missing the way this is used? There is no automatic poulation correect?<BR></td></tr></table> <DIV>&nbsp;</DIV><DIV>Did you see the sample ?</DIV><DIV>Example :</DIV><DIV>&nbsp;</DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; ' Open Recordset<BR>&nbsp;&nbsp;&nbsp; Rs.CursorLocation = adUseClient<BR>&nbsp;&nbsp;&nbsp; Rs.Open "select * from " &amp; "&#091;" &amp; Table &amp; "&#093;", Con</FONT></DIV><DIV><FONT face="Courier New, Courier, mono"></FONT>&nbsp;</DIV><DIV><FONT face="Courier New, Courier, mono">&nbsp;&nbsp;&nbsp; ' Data binding<BR>&nbsp;&nbsp;&nbsp; Set wndRecords.DataManager.DataSource = Rs<BR>&nbsp;&nbsp;&nbsp; <FONT color=#ff0000>wndRecords.DataManager.DataBind</FONT></FONT></DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 03 Jul 2009 12:57:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50636&amp;title=datasource-and-databinding#50636</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : Maybe I am missing something here.I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50546&amp;title=datasource-and-databinding#50546</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5343">Phoenix999</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 01 July 2009 at 5:58pm<br /><br />Maybe I am missing something here.<br><br>I have another control where once a datasource is attached it needs no other code to <br>populate header and columns with correct alignment etc based on the data type.<br><br>The ReportControls DataSource I just don't get.<br><br>Once attached you still need to iterate to create columns<br>Seems to defeat the purpose of the DataSouce.<br><br>Am I missing the way this is used? There is no automatic poulation correect?<br>]]>
   </description>
   <pubDate>Wed, 01 Jul 2009 17:58:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50546&amp;title=datasource-and-databinding#50546</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : Hi,  Have you seen the sample...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50524&amp;title=datasource-and-databinding#50524</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4049">Lodep59</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 01 July 2009 at 3:41am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Have you seen the sample released by CJ ?</DIV><DIV>You can find it on your installation folder in :</DIV><DIV>&nbsp;</DIV><UL><LI>Samples\ReportControl\VB\ReportDataBinding</LI></UL><P>In my opinion, this example should be included in the start menu shortcuts ...</P><DIV></DIV>]]>
   </description>
   <pubDate>Wed, 01 Jul 2009 03:41:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50524&amp;title=datasource-and-databinding#50524</guid>
  </item> 
  <item>
   <title><![CDATA[Datasource and DataBinding : New user of Codejock (v13).  I...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50373&amp;title=datasource-and-databinding#50373</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5343">Phoenix999</a><br /><strong>Subject:</strong> 14635<br /><strong>Posted:</strong> 26 June 2009 at 8:07pm<br /><br />New user of Codejock (v13).<DIV>&nbsp;</DIV><DIV>I am having trouble understanding whether the datasource property once set from an ADO data sourse should display the data or not.</DIV><DIV>&nbsp;</DIV><DIV>The header columns get the correct labels but no data is showm</DIV><DIV>&nbsp;</DIV><DIV>I have looked through the forums and note there are a few questions of this type BUT no answer forthcoming. Is this supported?</DIV><DIV>&nbsp;</DIV><DIV>I have other controls that once the datasource is set that is all that is reqiored to display the data.</DIV><DIV>&nbsp;</DIV><DIV>So does Codejock work this way? Or do you have to request row by row from the datasource and manually display the date. Is dso seems to defeat the purpose</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 26 Jun 2009 20:07:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14635&amp;PID=50373&amp;title=datasource-and-databinding#50373</guid>
  </item> 
 </channel>
</rss>