﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Wed, 18 Jul 2012 10:00:30 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;We could not decide the fixed date, but it should be in our R2 release. Also, I would need to confirm your question with our developer teams. Please bear with me.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Tue, 17 Jul 2012 05:29:55 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;&lt;p&gt;can you please ensure supplying client side parameters to filter the data in a report is an easy process to program. Thanks&lt;/p&gt;
&lt;p&gt;Is there a date we can expect this development?&lt;/p&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Mon, 16 Jul 2012 21:15:09 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Thank you for your feedback. This is exactly that we are going to do.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Fri, 13 Jul 2012 05:58:44 GMT</pubDate><dc:creator>zen8019</dc:creator><description>Here is the code in thw code behind of the report....&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;pre&gt;using System;
namespace SLDevExpressReports.Web
{
    public partial class XtraReport6 : DevExpress.XtraReports.UI.XtraReport
    {
        public XtraReport6()
        {
            InitializeComponent();
        }
        private void Detail_BeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
        {
            //DetailBand detail = (DetailBand)sender;
            //double dblValue;
            //string strTemp;
            this.Report.GetCurrentRow();
            string objValue = GetCurrentColumnValue("ClassNumber").ToString();
            Int32 ClassNum;
            bool parsed = Int32.TryParse(objValue.Substring(0, 3), out ClassNum);
            if (parsed)
            {
                if (ClassNum &amp;gt;= 0 &amp;amp;&amp;amp; ClassNum &amp;lt; 100)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(10)))), ((int)(((byte)(100)))));
                else if (ClassNum &amp;gt;= 100 &amp;amp;&amp;amp; ClassNum &amp;lt; 200)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(50)))), ((int)(((byte)(200)))));
                else if (ClassNum &amp;gt;= 200 &amp;amp;&amp;amp; ClassNum &amp;lt; 300)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(100)))), ((int)(((byte)(250)))));
                else if (ClassNum &amp;gt;= 300 &amp;amp;&amp;amp; ClassNum &amp;lt; 400)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(150)))), ((int)(((byte)(100)))));
                else if (ClassNum &amp;gt;= 400 &amp;amp;&amp;amp; ClassNum &amp;lt; 500)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(122)))), ((int)(((byte)(120)))), ((int)(((byte)(200)))));
                else if (ClassNum &amp;gt;= 500 &amp;amp;&amp;amp; ClassNum &amp;lt; 600)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(050)))), ((int)(((byte)(164)))), ((int)(((byte)(250)))));
                else if (ClassNum &amp;gt;= 600 &amp;amp;&amp;amp; ClassNum &amp;lt; 700)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(200)))), ((int)(((byte)(100)))));
                else if (ClassNum &amp;gt;= 700 &amp;amp;&amp;amp; ClassNum &amp;lt; 800)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(201)))), ((int)(((byte)(45)))), ((int)(((byte)(210)))));
                else if (ClassNum &amp;gt;= 800 &amp;amp;&amp;amp; ClassNum &amp;lt; 900)
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(14)))), ((int)(((byte)(253)))));
                else
                    xrPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(14)))), ((int)(((byte)(10)))));
            }
        }
    }
}
&lt;/pre&gt;&lt;pre&gt;As you can see there is an  opportunity to change the report e.g. value or display before the line is printed/previewed.&lt;/pre&gt;&lt;pre&gt;So we have an event the fires before the line is rendered ..&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt; "&gt; private void Detail_BeforePrint&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt; "&gt;Here I can depending on a vlaue in the dataset/record chage the background colour of the label.&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;&lt;span style="font-family: 'lucida sans unicode'; font-size: 10pt; "&gt;I have also attached some screen shots from DevExpress label report wizard.&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Thu, 12 Jul 2012 21:26:57 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello Richard,&lt;/p&gt;&lt;p&gt;We are still in developing phase for Report designer. Any reported scenario should be considered and be supported. If you can explain in screenshots, it would be more helpful. I can gather it in document list and let our developer study this scenario.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Tue, 10 Jul 2012 04:09:34 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p /&gt;&lt;p style="font-family: 'segoe ui', arial, verdana, tahoma; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(63, 63, 63); font-size: 12px; line-height: 18px; text-align: left; background-color: rgb(255, 255, 255); "&gt;2. Will you be able to program at detail/row e.g change the background color of the details/fields based on some logic.&lt;br /&gt;&lt;/p&gt;
&lt;p style="font-family: 'segoe ui', arial, verdana, tahoma; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(63, 63, 63); font-size: 12px; line-height: 18px; text-align: left; background-color: rgb(255, 255, 255); "&gt;Can you share with us a little about your scenario? Currently, user can change the style in designer. But in order to answer about your requirement, it would best if you tell us the detail of your scenario.&lt;/p&gt;
&lt;p style="font-family: 'segoe ui', arial, verdana, tahoma; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(63, 63, 63); font-size: 12px; line-height: 18px; text-align: left; background-color: rgb(255, 255, 255); "&gt;In typical report designer you have access to events within the report - e.g. detail line.  This is where you can write code to affect the detail line in the report -e.g. you may wan to hide a field control depending on its value or change its colour.&lt;/p&gt;
&lt;p style="font-family: 'segoe ui', arial, verdana, tahoma; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color: rgb(63, 63, 63); font-size: 12px; line-height: 18px; text-align: left; background-color: rgb(255, 255, 255); "&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Mon, 02 Jul 2012 08:00:46 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;It is not availble yet in ClientUI7. It should be ready for our R2 release. &lt;br /&gt;Regarding your question, would you mind to confirm some details?&lt;/p&gt;
&lt;p&gt;1. Will it have report templates.wizard e.g. Lable wizard to print say Avery type labels?&lt;/p&gt;
&lt;p&gt;Does it similiar like post/name card? If I am not mistaken, it should be supported.&lt;/p&gt;
&lt;p&gt;2. Will you be able to program at detail/row e.g change the background color of the details/fields based on some logic.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Can you share with us a little about your scenario? Currently, user can change the style in designer. But in order to answer about your requirement, it would best if you tell us the detail of your scenario.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Clietn ui 7 report designer</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Clietn-ui-7-report-designer/</link><pubDate>Fri, 29 Jun 2012 09:10:20 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;My understanding is that there will be a report deisigner in clientUI 7&lt;/p&gt;
&lt;p&gt;1) W&lt;span style="font-size: 10pt; "&gt;ill it have report templates/wizard e.g. Label wizard to print say Avery type labels.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt; "&gt;2) Will you be able to program at detail/row level e.g. change the background colour of the details/fields baed on some logic.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>