<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://helpcentral.componentone.com/CS/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title> Reports for WinForms - Recent Threads</title><link>http://helpcentral.componentone.com/CS/winforms_31/f/14.aspx</link><description>Reporting and Print Preview controls</description><dc:language>en-US</dc:language><generator>Telligent Community (Build: 5.5.134.11459)</generator><item><title>Re: Some questions on C1PreviewPane ?</title><link>http://helpcentral.componentone.com/CS/thread/237460.aspx</link><pubDate>Wed, 08 Sep 2010 17:19:18 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237460</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237460.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237434/rss.aspx</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m not exactly sure what you&amp;#39;re asking, sorry - could you explain your question in more detail? (Alternatively, you may send me a private message in Russian if that is easier.) Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Cutoff text in a rendertable column</title><link>http://helpcentral.componentone.com/CS/thread/237459.aspx</link><pubDate>Wed, 08 Sep 2010 17:12:10 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237459</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237459.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237263/rss.aspx</wfw:commentRss><description>&lt;p&gt;Use RenderTable.Style.WordWrap rather than RenderTable.CellStyle.WordWrap. CellStyle is an ambient property, so it propagates via objects (rather than styles) hierarchy (see help for more on this). In short, this:&lt;/p&gt;
&lt;p&gt;RenderTable rt = new RenderTable();&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;rt.Style.WordWrap = false;&lt;/p&gt;
&lt;p&gt;Should work. Hope this helps.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: headings with multiple columns in report</title><link>http://helpcentral.componentone.com/CS/thread/237458.aspx</link><pubDate>Wed, 08 Sep 2010 17:05:53 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237458</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237458.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237382/rss.aspx</wfw:commentRss><description>&lt;p&gt;You cannot use page columns for this but you should be able to create such a layout using a RenderTable. In your example, you would create a RenderTable with two columns and 10 rows, set SpanCols to 2 on cells (0,0) and (6,0), put your headings in those cells and &amp;quot;items&amp;quot; in other cells. Because RenderTable&amp;#39;s can be nested, there are no limitations on the types of those items. Does this make sense/help?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Multi-Language support in C1Report</title><link>http://helpcentral.componentone.com/CS/thread/237457.aspx</link><pubDate>Wed, 08 Sep 2010 17:01:21 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237457</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237457.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237106/rss.aspx</wfw:commentRss><description>&lt;p&gt;Are you using C1Report or C1PrintDocument component (both live in C1Report assembly)?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Localize C1PrintDocument Via Code</title><link>http://helpcentral.componentone.com/CS/thread/237456.aspx</link><pubDate>Wed, 08 Sep 2010 16:56:29 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237456</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237456.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236962/rss.aspx</wfw:commentRss><description>&lt;p&gt;To localize zoom drop down menu items:&lt;/p&gt;
&lt;p&gt;foreach (ToolStripItem item in this.c1PrintPreviewControl1.ToolBars.Zoom.DropZoomFactor.DropDownItems)&lt;br /&gt;{&lt;br /&gt;if (item.Text == C1.Win.C1Preview.Strings.ToolsIntegrator.ZoomItemActualSize)&lt;br /&gt;&amp;nbsp;item.Text = &amp;quot;my actual size&amp;quot;;&lt;br /&gt;else if (item.Text == C1.Win.C1Preview.Strings.ToolsIntegrator.ZoomItemPageWidth)&lt;br /&gt;&amp;nbsp;item.Text = &amp;quot;my page width&amp;quot;;&lt;br /&gt;else if (item.Text == C1.Win.C1Preview.Strings.ToolsIntegrator.ZoomItemTextWidth)&lt;br /&gt;&amp;nbsp;item.Text = &amp;quot;my text width&amp;quot;;&lt;br /&gt;else if (item.Text == C1.Win.C1Preview.Strings.ToolsIntegrator.ZoomItemWholePage)&lt;br /&gt;&amp;nbsp;item.Text = &amp;quot;my whole page&amp;quot;;&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;To localize context menu items:&lt;/p&gt;
&lt;p&gt;1) Assign a handler to C1PrintPreviewControl1.PreviewPane.ContextMenuStrip.ItemAdded:&lt;/p&gt;
&lt;p&gt;this.c1PrintPreviewControl1.PreviewPane.ContextMenuStrip.ItemAdded += new ToolStripItemEventHandler(ContextMenuStrip_ItemAdded);&lt;/p&gt;
&lt;p&gt;2) In that handler, localize strings e.g. as follows:&lt;/p&gt;
&lt;p&gt;static Dictionary&amp;lt;object, string&amp;gt; s_myContextMenuStrings = new Dictionary&amp;lt;object, string&amp;gt;()&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.Copy, &amp;quot;my copy&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.DeselectAll, &amp;quot;my deselect all&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.Find, &amp;quot;my find&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.HandTool, &amp;quot;my hand tool&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.Print, &amp;quot;my print&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.SelectAll, &amp;quot;my select all&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.SelectTool, &amp;quot;my select tool&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.ZoomIn, &amp;quot;my zoom in&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.ZoomOut, &amp;quot;my zoom out&amp;quot;},&lt;br /&gt;&amp;nbsp;{ C1.Win.C1Preview.ContextMenuTags.ZoomTool, &amp;quot;my zoom tool&amp;quot;},&lt;br /&gt;};&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;void ContextMenuStrip_ItemAdded(object sender, ToolStripItemEventArgs e)&lt;br /&gt;{&lt;br /&gt;&amp;nbsp;if (e.Item.Tag != null &amp;amp;&amp;amp; s_myContextMenuStrings.ContainsKey(e.Item.Tag))&lt;br /&gt;&amp;nbsp;&amp;nbsp;e.Item.Text = s_myContextMenuStrings[e.Item.Tag];&lt;br /&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: For Next Loops</title><link>http://helpcentral.componentone.com/CS/thread/237454.aspx</link><pubDate>Wed, 08 Sep 2010 16:21:16 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237454</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237454.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237015/rss.aspx</wfw:commentRss><description>&lt;p&gt;Yes. But, of course, you must make sure that the syntax of your script is valid.&lt;/p&gt;
&lt;p&gt;E.g. the following C# will assign &amp;quot;5&amp;quot; to the MyField field&amp;#39;s text:&lt;/p&gt;
&lt;p&gt;rep.Sections[SectionTypeEnum.Detail].OnFormat = &amp;quot;for I = 1 to 5 \r\nMyField.Text = I.ToString()\r\n next I&amp;quot;;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Increase Size of Print Preview Toolbar?</title><link>http://helpcentral.componentone.com/CS/thread/237453.aspx</link><pubDate>Wed, 08 Sep 2010 16:05:44 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237453</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237453.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236965/rss.aspx</wfw:commentRss><description>&lt;p&gt;Toolbars are ToolStrip objects that can be accessed via C1PrintPreviewControl.ToolBars.&amp;lt;toolbar&amp;gt;.ToolStrip where &amp;lt;toolbar&amp;gt; is one of File, Navigation, Page, Text or Zoom. For instance the following code could be used:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;public Form1()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;InitializeComponent();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ResizeToolStrip(this.c1PrintPreviewControl1.ToolBars.File.ToolStrip);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ResizeToolStrip(this.c1PrintPreviewControl1.ToolBars.Navigation.ToolStrip);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ResizeToolStrip(this.c1PrintPreviewControl1.ToolBars.Page.ToolStrip);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ResizeToolStrip(this.c1PrintPreviewControl1.ToolBars.Text.ToolStrip);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ResizeToolStrip(this.c1PrintPreviewControl1.ToolBars.Zoom.ToolStrip);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;private void ResizeToolStrip(ToolStrip ts)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ts.AutoSize = false;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ts.ImageScalingSize = new Size(64, 64);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ts.AutoSize = true;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Change image field</title><link>http://helpcentral.componentone.com/CS/thread/237450.aspx</link><pubDate>Wed, 08 Sep 2010 15:49:38 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237450</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237450.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236938/rss.aspx</wfw:commentRss><description>&lt;p&gt;(Just to clarify, in the above code, &amp;quot;image&amp;quot; is the Name of the field where I want to put the picture. Adjust as needed.)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Change image field</title><link>http://helpcentral.componentone.com/CS/thread/237449.aspx</link><pubDate>Wed, 08 Sep 2010 15:48:37 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237449</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237449.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236938/rss.aspx</wfw:commentRss><description>&lt;p&gt;Attach a handler to the StartSection event of the report. In that handler, assign the image to the Picture property of the desired field, e.g.:&lt;/p&gt;
&lt;p&gt;void rep_StartSection(object sender, ReportEventArgs e)&lt;/p&gt;
&lt;p&gt;&amp;#123;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;C1Report rep = (C1Report)sender;&lt;/p&gt;
&lt;p&gt; &amp;nbsp;if (e.Section == SectionTypeEnum.Detail)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;rep.Sections[SectionTypeEnum.Detail].Fields[&amp;quot;image&amp;quot;].Picture = myPic;&lt;/p&gt;
&lt;p&gt;&amp;#125;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Upgrade to later version: C1Report.Load takes much longer</title><link>http://helpcentral.componentone.com/CS/thread/237443.aspx</link><pubDate>Wed, 08 Sep 2010 12:49:20 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237443</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237443.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/225439/rss.aspx</wfw:commentRss><description>&lt;p&gt;Tried to answer this but somehow don&amp;#39;t see my reply. To repeat, we did fix a bug that improved loading of reports with multiple subreports some time ago. Maybe in your case, some other issue is at work. Could you please post your report definition (or email it to me) so that we could look into the problem? Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Upgrade to later version: C1Report.Load takes much longer</title><link>http://helpcentral.componentone.com/CS/thread/237436.aspx</link><pubDate>Wed, 08 Sep 2010 07:23:02 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237436</guid><dc:creator>eppinkf</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237436.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/225439/rss.aspx</wfw:commentRss><description>&lt;p&gt;I just checked the C1Report.dll in 2010 V2 and realized that the bug still exists.&lt;/p&gt;
&lt;p&gt;I have one (complicated) report definition file which takes 35 seconds just to load, rendering not included!&lt;/p&gt;
&lt;p&gt;Is it planned to fix this problem at all?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Some questions on C1PreviewPane ?</title><link>http://helpcentral.componentone.com/CS/thread/237434.aspx</link><pubDate>Wed, 08 Sep 2010 04:55:01 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237434</guid><dc:creator>Igor Jukov</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237434.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237434/rss.aspx</wfw:commentRss><description>&lt;p&gt;1. Whether it is possible to share C1PreviewPane and C1Toolbar ?&lt;/p&gt;
&lt;p&gt;2. I can not find event generating transition on pages C1PreviewPane ? In old version VSPrinter event was called AfterUserPage&lt;/p&gt;
&lt;p&gt;Use of the standard control panel in ToolStrip not absolutely approaches&lt;/p&gt;
&lt;p&gt;Excuse for my English&lt;/p&gt;
&lt;p&gt;Yours faithfully Igor Jukov&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Cutoff text in a rendertable column</title><link>http://helpcentral.componentone.com/CS/thread/237429.aspx</link><pubDate>Tue, 07 Sep 2010 20:47:13 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237429</guid><dc:creator>C1_SuelindaW</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237429.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237263/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Are you using &amp;#39;\n&amp;#39; or &amp;#39;vbCrLf&amp;#39; within the the strings displayed in the &amp;quot;Insured name&amp;quot; column? If so, the line break will render regardless of the setting of the WrapText property as of build 2.0.20102.61183/4.0.20102.61183. For a while, between this build and 2.0.20093.61169, the hard returns would be ignored.&lt;/p&gt;
&lt;p&gt;-SuelindaW&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>headings with multiple columns in report</title><link>http://helpcentral.componentone.com/CS/thread/237382.aspx</link><pubDate>Mon, 06 Sep 2010 15:22:22 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237382</guid><dc:creator>HMaster</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237382.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237382/rss.aspx</wfw:commentRss><description>&lt;p&gt;We are using the C1PrintPreview control and creating reports in code.&lt;br /&gt;&lt;br /&gt;We would like to create a report with this style of page layout:&lt;/p&gt;
&lt;p&gt;-----------------------------------------&lt;/p&gt;
&lt;p&gt;My Section Heading accross the page&lt;/p&gt;
&lt;p&gt;Item 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item 6&lt;br /&gt;Item 2 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item 7&lt;br /&gt;Item 3 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item 8&lt;br /&gt;Item 4 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item 9&lt;br /&gt;Item 5 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item 10&lt;br /&gt;&lt;br /&gt;My Second section heading&lt;/p&gt;
&lt;p&gt;Item A &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item D&lt;br /&gt;Item B &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item E&lt;br /&gt;Item C &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item F&lt;/p&gt;
&lt;p&gt;-----------------------------------------&lt;br /&gt;&lt;br /&gt;That is, using the columns option create sections whereby the data (probably a RenderTable) is rendered into columns, but with a heading that is not also &amp;quot;squashed&amp;quot; into the columns too.&lt;br /&gt;&lt;br /&gt;Is such a layout possible, and if so, how?&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;Nick.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Cutoff text in a rendertable column</title><link>http://helpcentral.componentone.com/CS/thread/237263.aspx</link><pubDate>Thu, 02 Sep 2010 16:49:52 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237263</guid><dc:creator>ramesh_agro</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237263.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237263/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Environment : VB.Net 2008, Windows application&lt;/p&gt;
&lt;p&gt;I am loading data from grid to RenderTable object and display report using C1PrintDocument.RenderDirect method.&lt;/p&gt;
&lt;p&gt;Note: User can able to resize the columns in the grid. &lt;/p&gt;
&lt;p&gt;When prints the report, the data in the grid is loaded into rendertable object along with each column styles. the issue is when the column width is less than the column text, then &amp;nbsp;the extra text need to be cutoff. i tried with setting cellstyle.wordwrap=false property but its not working.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size:x-small;"&gt;&lt;span style="font-size:x-small;"&gt;
&lt;p&gt;&amp;nbsp;attached is the image (increased the size for&amp;nbsp;easy visibility of the issue)&lt;/p&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Any idea?&lt;/p&gt;
&lt;p&gt;&lt;img src="http://helpcentral.componentone.com/CS/resized-image.ashx/__size/550x0/__key/CommunityServer-Discussions-Components-Files/14/8321.report.jpg" border="0" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Multi-Language support in C1Report</title><link>http://helpcentral.componentone.com/CS/thread/237106.aspx</link><pubDate>Tue, 31 Aug 2010 19:32:36 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237106</guid><dc:creator>dalewill</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237106.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237106/rss.aspx</wfw:commentRss><description>&lt;p&gt;Everyone:&lt;/p&gt;
&lt;p&gt;I need to recreate on Canadian government customs forms that have all fields headings in both english and french-canadian.&amp;nbsp; Is it possible to support 2 languages on a c1report?&amp;nbsp; If it is possible are there any examples on how to do it.&lt;/p&gt;
&lt;p&gt;Sincerely,&lt;/p&gt;
&lt;p&gt;Dale&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Localize C1PrintDocument Via Code</title><link>http://helpcentral.componentone.com/CS/thread/237080.aspx</link><pubDate>Tue, 31 Aug 2010 11:15:39 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237080</guid><dc:creator>Wolfgang Knauf</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237080.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236962/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;sorry, I don&amp;#39;t know how to localize the C1 controls &amp;quot;in code&amp;quot;, so you know more than me ;-).&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;
&lt;p&gt;Wolfgang &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: C1ReportViewer not loading new reports</title><link>http://helpcentral.componentone.com/CS/thread/237056.aspx</link><pubDate>Mon, 30 Aug 2010 20:46:43 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237056</guid><dc:creator>infotacto</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237056.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/234560/rss.aspx</wfw:commentRss><description>&lt;p&gt;Sorry Dima yes Im using C1WebReport and C1Report to generate the report. Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: C1ReportViewer not loading new reports</title><link>http://helpcentral.componentone.com/CS/thread/237054.aspx</link><pubDate>Mon, 30 Aug 2010 20:42:27 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237054</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237054.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/234560/rss.aspx</wfw:commentRss><description>&lt;p&gt;I just answered your two other messages and now I see that you&amp;#39;re using C1ReportViewer - NOT C1WebReport. While both are based on the same C1Report engine, those are DIFFERENT products, with different properties etc. So you may ignore my answers there. Those threads were about C1WebReport, so if you have any issues with C1ReportViewer - please state them here, and I will try to help.&lt;/p&gt;
&lt;p&gt;Re Silverlight - yes, we are planning to do a Silverlight viewer in a future version.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Web Report Cache clear problem..</title><link>http://helpcentral.componentone.com/CS/thread/237053.aspx</link><pubDate>Mon, 30 Aug 2010 20:35:16 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237053</guid><dc:creator>C1_Dima</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237053.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/212374/rss.aspx</wfw:commentRss><description>&lt;p&gt;Answered in another thread.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: C1ReportViewer not loading new reports</title><link>http://helpcentral.componentone.com/CS/thread/237051.aspx</link><pubDate>Mon, 30 Aug 2010 20:29:57 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237051</guid><dc:creator>infotacto</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237051.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/234560/rss.aspx</wfw:commentRss><description>&lt;p&gt;Thanks Dima, i create some other post about the cache stuff, I just tried what you said here about the reportname property and then it works. &amp;nbsp;Thanks, and let you know if i found any other rare stuff. Btw Dima, do you know if there is any Silverlight Report Preview that C1 is going to deliver in a future version? Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Web Report Cache clear problem..</title><link>http://helpcentral.componentone.com/CS/thread/237047.aspx</link><pubDate>Mon, 30 Aug 2010 19:58:10 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237047</guid><dc:creator>infotacto</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237047.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/212374/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi, im using the c1.webreport 4.0 and the C1WebReport control doesnt have a Report Property, so what im doing is to set the c1.report tag to DateTime.Now and its not working. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also the 4.0 control doesnt have a Cache.Clear() method so the cache things is really a mess. If i set the cache.enabled = false then the reports doesnt work...&lt;/p&gt;
&lt;p&gt;Please a help with cache thing in c1webreprot 4.0 or 3.0. Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Localize C1PrintDocument Via Code</title><link>http://helpcentral.componentone.com/CS/thread/237044.aspx</link><pubDate>Mon, 30 Aug 2010 18:27:22 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237044</guid><dc:creator>TheGMan</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237044.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236962/rss.aspx</wfw:commentRss><description>&lt;p&gt;Wolfgang,&lt;/p&gt;
&lt;p&gt;Could you please tell me what part of the C1PrintPreviewControl has the &amp;quot;ToolsIntegrator.ZoomItemActualSize&amp;quot; property? &amp;nbsp;I have tried everything I can think of to find that and the context menus. &amp;nbsp;For example, how do you localize the context menus in the preview pane?&lt;/p&gt;
&lt;p&gt;I&amp;#39;d really rather localize the strings myself. &amp;nbsp;I&amp;#39;m trying to keep all of the application strings in a single file. &amp;nbsp;Using the C1 localization tool creates a second string file to manage. &amp;nbsp;At this point, I&amp;#39;m so close to having everything localized I&amp;#39;d rather not &amp;nbsp;try to switch back.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: Localize C1PrintDocument Via Code</title><link>http://helpcentral.componentone.com/CS/thread/237022.aspx</link><pubDate>Mon, 30 Aug 2010 12:16:06 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237022</guid><dc:creator>Wolfgang Knauf</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237022.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/236962/rss.aspx</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I think you can use the C1 localization tool anyway. Create localizations for all required languages, and then set your desired language in application startup:&lt;/p&gt;
&lt;p&gt;System.Globalization.CultureInfo.CurrentCulture = new CultureInfo (&amp;quot;de-de&amp;quot;);&lt;/p&gt;
&lt;p&gt;This should pick the correct one.&lt;/p&gt;
&lt;p&gt;The &amp;quot;missing&amp;quot; resource strings (&amp;quot;ToolsIntegrator.ZoomItemActualSize&amp;quot;, ...) can be found by localizing e.g. a &amp;quot;C1PrintPreviewControl&amp;quot; control.&lt;/p&gt;
&lt;p&gt;Hope this helps&lt;/p&gt;
&lt;p&gt;Wolfgang&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>For Next Loops</title><link>http://helpcentral.componentone.com/CS/thread/237015.aspx</link><pubDate>Sat, 28 Aug 2010 17:19:35 GMT</pubDate><guid isPermaLink="false">6ffc9ae0-0270-4839-b826-46696419445e:237015</guid><dc:creator>PatD</dc:creator><slash:comments>0</slash:comments><comments>http://helpcentral.componentone.com/CS/thread/237015.aspx</comments><wfw:commentRss>http://helpcentral.componentone.com/CS/winforms_31/f/14/t/237015/rss.aspx</wfw:commentRss><description>&lt;p&gt;Do the scripts in the report designer support for/next loops?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>