<?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 : Working with hidden Column</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Report Control : Working with hidden Column]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 17:31:24 +0000</pubDate>
  <lastBuildDate>Fri, 30 Jul 2010 09:44:30 +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=16989</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[Working with hidden Column : Hi,  i have found my mistake....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59542&amp;title=working-with-hidden-column#59542</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5092">demiurge</a><br /><strong>Subject:</strong> 16989<br /><strong>Posted:</strong> 30 July 2010 at 9:44am<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>i have found my mistake. I have used the "FullColumnScrolling" property. After disabling this property everything was right.</DIV><DIV>&nbsp;</DIV><DIV>Thanks for ypir help.</DIV><DIV>&nbsp;</DIV><DIV>Regards </DIV><DIV>Demiurge</DIV>]]>
   </description>
   <pubDate>Fri, 30 Jul 2010 09:44:30 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59542&amp;title=working-with-hidden-column#59542</guid>
  </item> 
  <item>
   <title><![CDATA[Working with hidden Column : Hi,  thank you for your answer....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59439&amp;title=working-with-hidden-column#59439</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5092">demiurge</a><br /><strong>Subject:</strong> 16989<br /><strong>Posted:</strong> 24 July 2010 at 12:56pm<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>thank you for your answer. Your example works fine. I will check it in my project at work on monday. </DIV><DIV>&nbsp;</DIV><DIV>Have a nice weekend.</DIV>]]>
   </description>
   <pubDate>Sat, 24 Jul 2010 12:56:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59439&amp;title=working-with-hidden-column#59439</guid>
  </item> 
  <item>
   <title><![CDATA[Working with hidden Column : Hi,  MaybeI don&amp;#039;t understand...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59431&amp;title=working-with-hidden-column#59431</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3701">Aaron</a><br /><strong>Subject:</strong> 16989<br /><strong>Posted:</strong> 23 July 2010 at 4:20pm<br /><br />Hi,<DIV>&nbsp;</DIV><DIV>Maybe&nbsp;I don't understand what you mean... But this will resize only last column to full&nbsp;width of RC</DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000ff>With </FONT>wndReportControl<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AutoColumnSizing = True&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </DIV><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>For </FONT>i = 0 <FONT color=#0000ff>To </FONT>5</P><BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>With </FONT>.Columns<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>With </FONT>.Add(.Count, "Column " &amp; i, 100, <FONT color=#0000ff>True</FONT>)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .AutoSize = <FONT color=#0000ff>False </FONT><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>End With</FONT><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>End With</FONT></DIV></BLOCKQUOTE><FONT color=#0000ff><DIV></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>Next </FONT>i<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <FONT color=#0000ff>Me</FONT>.wndReportControl.Columns(5).AutoSize = <FONT color=#0000ff>True </FONT><FONT color=#006600>'This will autosize&nbsp;only last column</FONT></DIV><DIV>&nbsp;</DIV><DIV><FONT color=#0000ff>End With<BR></FONT>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </DIV><DIV>&nbsp;</DIV><DIV>But if you resize RC smaller than total width of columns the scrollbar <strong>will</strong> appear. If you don't want scrollbars, you have to set AutoColumnSizing to True.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>As I said before, maybe I don't understand what you mean, in that case just upload&nbsp;small demo and explain what you want.</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Fri, 23 Jul 2010 16:20:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59431&amp;title=working-with-hidden-column#59431</guid>
  </item> 
  <item>
   <title><![CDATA[Working with hidden Column : Hello,   i have a little problem...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59417&amp;title=working-with-hidden-column#59417</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5092">demiurge</a><br /><strong>Subject:</strong> 16989<br /><strong>Posted:</strong> 22 July 2010 at 3:20am<br /><br />Hello, <DIV>&nbsp;</DIV><DIV>i have a little problem with the report control. I add several visible columns and one hidden column at the end. I don't use autsize function. The&nbsp;width of all columns is smaller then the width of the control. Here begins my Problem. Although the columns dont user the hole width, i get a horizontal scrollbar and when i size the last visible column to maximum width, i get a empty column. </DIV><DIV>&nbsp;</DIV><DIV>How can i fix it in the matter, that there is no scroolbar and no empty column.</DIV><DIV>&nbsp;</DIV><DIV>Thanks for your help.</DIV>]]>
   </description>
   <pubDate>Thu, 22 Jul 2010 03:20:34 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16989&amp;PID=59417&amp;title=working-with-hidden-column#59417</guid>
  </item> 
 </channel>
</rss>