<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Intersoft Solutions Corporate Blog &#187; 2012 R2</title>
	<atom:link href="http://blog.intersoftsolutions.com/category/2012-r2/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.intersoftsolutions.com</link>
	<description>All about development productivity – ASP.NET, Silverlight, WPF, iOS, Android, Windows Phone, Windows 8</description>
	<lastBuildDate>Sat, 21 Apr 2018 06:57:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.33</generator>
	<item>
		<title>Create Drill Down Chart with UXChart</title>
		<link>http://blog.intersoftsolutions.com/2013/03/create-drill-down-chart-with-uxchart/</link>
		<comments>http://blog.intersoftsolutions.com/2013/03/create-drill-down-chart-with-uxchart/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 03:24:03 +0000</pubDate>
		<dc:creator><![CDATA[yanesblog]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Charting]]></category>
		<category><![CDATA[ClientUI]]></category>
		<category><![CDATA[Drilldown]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[UXChart]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=3025</guid>
		<description><![CDATA[Quite often, you will need to allow your user to drill-down data from yearly data to monthly or from categories to individual items. Now it’s very easy with our new concept which gives you freedom to create unlimited levels of drill-down charts from a single [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/chart01_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="Drill down chart" style="float:right; margin:0 0 10px 10px;" /><p>Quite often, you will need to allow your user to drill-down data from yearly data to monthly or from categories to individual items. Now it’s very easy with our new concept which gives you freedom to create unlimited levels of drill-down charts from a single data source in minutes.</p>
<p>In this blog post, I want to show an example of drilling down chart data, i.e. to display master-detail data in the same chart, by clicking a point of the first series will let another series shown, which represents detailed data related to the selected point. This is critical for creating interesting and fun charts to interact with. This blog entry includes basic knowledge of what you can do with our chart right out of the box. See the following screenshot for the drilling down chart that we want to create.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/03/chart01.png"><img title="Drill down chart" style="background-image:none;padding-top:0;padding-left:0;display:inline;padding-right:0;border-width:0;" border="0" alt="Drill down chart" src="http://intersoftpt.files.wordpress.com/2013/03/chart01_thumb.png" width="642" height="365"></a></p>
<p>To get started, we use the <b>Child</b> properties in UXChart to specify which chart that we want to display as detail of origin chart. Specifically, all charting collections must be defined in View in a first place. On first load, you are allowed to display one chart only, and the others’ visibility must be set to collapse. See the code below:</p>
<p></p><pre class="crayon-plain-tag">&lt;dataVisualisation:UXChart x:Name="Chart1" Visibility="Visible" Child="{Binding ElementName=Chart2}"
                        DrillDownCommand="{Binding DrillDownCommand}"&gt;
&lt;/dataVisualisation:UXChart&gt;

&lt;dataVisualisation:UXChart x:Name="Chart2" Visibility="Collapsed"  &gt;
&lt;/dataVisualisation:UXChart&gt;</pre><p></p>
<p>Next, we need to hook our custom command to control the drilldown action, we called it <b>DrillDownCommand</b>.</p>
<p></p><pre class="crayon-plain-tag">public DelegateCommand DrillDownCommand { get; set; }</pre><p></p>
<p>And then we assign DrillDownCommand to some execute the method in our ViewModel.</p>
<p></p><pre class="crayon-plain-tag">this.DrillDownCommand = new DelegateCommand(ExecuteDrillDown);</pre><p></p>
<p>In the execute method, we can initialize the data from the data source and retrieve detail information about the chart itself.</p>
<p></p><pre class="crayon-plain-tag">private void ExecuteDrillDown(object parameter)
{
   UXChartDrillDownCommandArgs args = parameter as UXChartDrillDownCommandArgs;

   if (args.Level == 1)
   {
     Data parent = args.DataPointContext as Data;
     if (parent != null)
     {
       InitializeDataByArea(parent.Area);
     }
   }
}</pre><p></p>
<p>In conclusion, with simple implementation, we already make drill down function very simple and effortless. Now feel free to try and make your very own drill down chart. There’s unlimited level that you can figure out and explore.</p>
<p>For more information about our ClientUI control in Silverlight &amp; WPF, please refer to the <a href="http://www.intersoftpt.com/Support/ClientUI/Documentation">online documentation</a>. You can download our sample <a href="http://www.intersoftpt.com/tdn/downloads/DrillDownSample.zip">here</a>. Feel free to drop us any questions or feedback.</p>
<p>Till we meet again.</p>
<p>Cheers,<br />Yanes</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2013/03/create-drill-down-chart-with-uxchart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intersoft Product Survey 2013</title>
		<link>http://blog.intersoftsolutions.com/2013/03/intersoft-product-survey-2013/</link>
		<comments>http://blog.intersoftsolutions.com/2013/03/intersoft-product-survey-2013/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 03:02:23 +0000</pubDate>
		<dc:creator><![CDATA[martinlie]]></dc:creator>
				<category><![CDATA[2012 R1]]></category>
		<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Developer Network]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=3021</guid>
		<description><![CDATA[The arrival of Windows 8 adds more choices to the platform stack that mobile developers should consider. So my question is, do you plan to build Windows 8 apps, or perhaps you already built one? As we&#8217;re planning our roadmap ahead, we&#8217;d love to hear [...]]]></description>
				<content:encoded><![CDATA[<img width="436" height="250" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/06/marketing.jpg" class="attachment-post-thumbnail wp-post-image" alt="marketing" style="float:right; margin:0 0 10px 10px;" /><p>The arrival of Windows 8 adds more choices to the platform stack that mobile developers should consider. So my question is, do you plan to build Windows 8 apps, or perhaps you already built one? As we&#8217;re planning our roadmap ahead, we&#8217;d love to hear from you – which platforms will you build your next apps on, the challenges you&#8217;re facing, and what tools you need to get your jobs done right.</p>
<p>Join our <a href="http://www.surveymonkey.com/s/YMHFDLK" target="_blank">2013 product survey</a> and place your vote so we can align our next product roadmap to your development needs.</p>
<p>Your participation is an effective way to present your thoughts and opinions about our products and service to the management of Intersoft Solutions. I do believe that your valuable feedback would be very useful to help us improve our products and services in the future.</p>
<p>If you have any questions or technical difficulties, please don’t hesitate to drop an email to me at <a href="mailto:martin@intersoftpt.com">martin@intersoftpt.com</a>.</p>
<p>Thank you for your time and participation.</p>
<p>Regards,<br />
Martin</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2013/03/intersoft-product-survey-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebFileUploader: Store Uploaded Files in Database</title>
		<link>http://blog.intersoftsolutions.com/2013/01/webfileuploader-store-uploaded-files-in-database/</link>
		<comments>http://blog.intersoftsolutions.com/2013/01/webfileuploader-store-uploaded-files-in-database/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 10:30:03 +0000</pubDate>
		<dc:creator><![CDATA[yudhiy]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[File Uploader]]></category>
		<category><![CDATA[WebUI Studio]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=3014</guid>
		<description><![CDATA[Last year I posted an article which showed how to store the files which are uploaded using UXFileUpload (ClientUI control for Silverlight and WPF) in database. In this article, I will show a similar scenario which can be done using WebFileUploader, a member of Intersoft [...]]]></description>
				<content:encoded><![CDATA[<img width="531" height="124" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/webfileuploader_thumb1.jpg" class="attachment-post-thumbnail wp-post-image" alt="WebFileUploader" style="float:right; margin:0 0 10px 10px;" /><p>Last year I posted an article which showed how to store the files which are uploaded using UXFileUpload (ClientUI control for Silverlight and WPF) in database. In this article, I will show a similar scenario which can be done using WebFileUploader, a member of Intersoft Solutions ASP.NET controls.</p>
<p>WebFileUploader is an easy to use; high performance and advanced file upload component which allows you to upload multiple files without page refresh. WebFileUploader uses 100% HTML technology for all its features, and fully supports all modern browsers including Firefox, Safari, Chrome and Opera. Using 100% HTML technology means that WebFileUploader doesn&#8217;t require Flash plug-in to support multiple files uploading and many other features.</p>
<p>This scenario, to store the uploaded files in database, can be divided to two parts. The first part is <strong>to configure WebFileUploader for IIS application</strong>; and the other part, <strong>using server-side code to process uploaded files and store them into database</strong>.</p>
<h2>To configure WebFileUploader for IIS application</h2>
<p>Some configuration is needed in the web.config to run WebFileUploader in IIS. The list below shows how to configure WebFileUploader for IIS 7 application.</p>
<ol>
<li>By default, ASP.NET application restricts maximum request length to 4 MB. To enable our application to accept larger files, please configure the maxRequestLength in web.config to higher value. The maxRequestLength value is measured in kilobytes. Here is a snippet to increase your file size to 100MB. <pre class="crayon-plain-tag">&lt;configuration&gt;
  &lt;system.web&gt;
    &lt;httpRuntime maxRequestLength="102400" /&gt;
  &lt;/system.web&gt;
&lt;/configuration&gt;</pre></p>
<li>Add WebFileUploader handler to &lt;handlers&gt; section under &lt;system.webServer&gt;. Here is the snippet. <pre class="crayon-plain-tag">&lt;add name="WebFileUploaderHttpHandler" verb="GET"
  path="WebFileUploaderHttpHandler.axd"
  type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor"
  preCondition="integratedMode" /&gt;</pre>
<li>Add WebFileUploader module to &lt;modules&gt; section under &lt;system.webServer&gt; in our project web.config. Here is the snippet. <pre class="crayon-plain-tag">&lt;add name="WebFileUploaderHttpModule" preCondition="managedHandler"
  type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor" /&gt;</pre>
<li>Set maxAllowedContentLength to a higher value, which is measured in bytes, to 100MB in web.config. This attribute specifies the maximum length of content in a request. The default value is 30000000, which is approximately 28.6 MB. <pre class="crayon-plain-tag">&lt;system.webServer&gt;
  &lt;security&gt;
    &lt;requestFiltering&gt;
      &lt;requestLimits maxAllowedContentLength="104857600" /&gt;
    &lt;/requestFiltering&gt;
  &lt;/security&gt;
&lt;/system.webServer&gt;</pre>
<li>Unlock the mode override in applicationHost.config. Open IIS 7 application configuration file, the default location is in C:windowssystem32inetsrvconfig, and change the overrideModeDefault to Allow. <pre class="crayon-plain-tag">&lt;section name="requestFiltering" overrideModeDefault="Allow" /&gt;</pre></li>
</ol>
<p>Save the changes and then try to upload a file. If WebFileUploader has been successfully uploaded the file to the designated folder, it means that we are on half way to achieve the goal and ready to proceed to the next step.</p>
<h2>Using server-side code to process uploaded files and store them into database</h2>
<p>A database, called Files.mdf, is added into the App_Data folder of the web project. This database has Files table which consists of following fields.</p>
<table border="1" cellspacing="0" cellpadding="2" width="359">
<tbody>
<tr>
<th valign="top" width="96">Column Name</th>
<th valign="top" width="123">Data Type</th>
<th valign="top" width="140">Allow Nulls</th>
</tr>
<tr>
<td valign="top" width="96">Id</td>
<td valign="top" width="123">uniqueidentifier</td>
<td valign="top" width="140">False</td>
</tr>
<tr>
<td valign="top" width="96">FileData</td>
<td valign="top" width="123">varbinary(MAX)</td>
<td valign="top" width="140">True</td>
</tr>
<tr>
<td valign="top" width="96">OriginalName</td>
<td valign="top" width="123">nvarchar(50)</td>
<td valign="top" width="140">False</td>
</tr>
<tr>
<td valign="top" width="96">DateCreated</td>
<td valign="top" width="123">datetime</td>
<td valign="top" width="140">False</td>
</tr>
</tbody>
</table>
<p>A Stored Procedure, sprocFilesInsertSingleItem, will be used to insert a single item of file into Files.mdf database.</p>
<p></p><pre class="crayon-plain-tag">INSERT INTO Files
(
	Id,
	FileUrl,
	FileData,
	OriginalName
)
VALUES
(
	@id,
	@FileUrl,
	@FileData,
	@originalName
)</pre><p></p>
<p>Next, we are going to use the <strong>OnAfterUpload</strong> server-side event of WebFileUploader. It is the server-side event which fired when a file upload is succeeded. Generally, there are three processes to be performed on this event.</p>
<ul>
<li>Read and manipulate the uploaded file using FileStream class.
<li>Invoke and execute sprocFilesInsertSingleItem stored procedure to store the uploaded file on Files.mdf database.
<li>Delete the specified file from the UploadPath folder. </li>
</ul>
<p></p><pre class="crayon-plain-tag">protected void WebFileUploader1_AfterUpload(object sender, ISNet.WebUI.WebTextEditor.WebFileUploaderFileEventArgs e)
{
    byte[] fileData = ReadFile(e.WebFileUploadInfo.Path + "\" + e.WebFileUploadInfo.FileName);
    string originalName = e.WebFileUploadInfo.FileName;

    using (SqlConnection mySqlConnection = new SqlConnection(@"Data Source=.SQLEXPRESS;AttachDbFilename=|DataDirectory|Files.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True"))
    {
        // Set up the Command object
        SqlCommand myCommand = new SqlCommand("sprocFilesInsertSingleItem", mySqlConnection);
        myCommand.CommandType = CommandType.StoredProcedure;

        // Set up the ID parameter
        SqlParameter prmId = new SqlParameter("@id", SqlDbType.UniqueIdentifier);

        Guid id = Guid.NewGuid();
        prmId.Value = id;
        myCommand.Parameters.Add(prmId);

        // Set up the FileUrl parameter
        SqlParameter prmFileUrl = new SqlParameter("@fileUrl", SqlDbType.NVarChar, 255);

        prmFileUrl.Value = DBNull.Value;
        myCommand.Parameters.Add(prmFileUrl);

        // Set up the FileData parameter
        SqlParameter prmFileData = new SqlParameter("@fileData ", SqlDbType.VarBinary);

        prmFileData.Value = fileData;
        prmFileData.Size = fileData.Length;
        myCommand.Parameters.Add(prmFileData);

        // Set up the OriginalName parameter
        SqlParameter prmOriginalName = new SqlParameter("@originalName", SqlDbType.NVarChar, 50);
        prmOriginalName.Value = e.WebFileUploadInfo.FileName;
        myCommand.Parameters.Add(prmOriginalName);

        // Execute the command, and clean up.
        mySqlConnection.Open();
        bool result = myCommand.ExecuteNonQuery() &gt; 0;
        mySqlConnection.Close();
    }

    File.Delete(e.WebFileUploadInfo.Path + "\" + e.WebFileUploadInfo.FileName);
}

private static byte[] ReadFile(string filePath)
{
    byte[] buffer;
    FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read);

    try
    {
        int length = (int)fileStream.Length; // get file length
        buffer = new byte[length];           // create buffer
        int count;                           // actual number of bytes read
        int sum = 0;                         // total number of bytes read

        // read until Read method returns 0 (end of the stream has been reached)
        while ((count = fileStream.Read(buffer, sum, length - sum)) &gt; 0)
        {
            sum += count; // sum is a buffer offset for next reading
        }
    }
    finally
    {
        fileStream.Close();
    }

    return buffer;
}</pre><p></p>
<p>That’s it! Now the files uploaded by WebFileUploader control will be stored in database. It’s pretty easy and straightforward, don’t you think so?</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/webfileuploader.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebFileUploader" border="0" alt="WebFileUploader" src="http://intersoftpt.files.wordpress.com/2013/01/webfileuploader_thumb.jpg" width="531" height="124"></a></p>
<p>Click <a href="http://www.intersoftpt.com/tdn/downloads/WebFileUploader_Sample.zip">here</a> to download the sample and feel free to drop me a line in the comment box if you find this post useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2013/01/webfileuploader-store-uploaded-files-in-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WebUI Studio 2012 R2 Installer Refresh</title>
		<link>http://blog.intersoftsolutions.com/2013/01/webui-studio-2012-r2-installer-refresh/</link>
		<comments>http://blog.intersoftsolutions.com/2013/01/webui-studio-2012-r2-installer-refresh/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 14:37:22 +0000</pubDate>
		<dc:creator><![CDATA[Jimmy Petrus]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[New Releases]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WebUI Studio]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=3005</guid>
		<description><![CDATA[Today, we have posted an update to the WebUI Studio 2012 R2 installer which addressed a few glitches related to samples and installation. In addition, the installer “refresh” also includes newer product builds across ASP.NET, Silverlight and WPF tools for enhanced cross-platform compatibility and improved [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/sl_technicalsamples_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="ClientUI Technical Samples (Silverlight)" style="float:right; margin:0 0 10px 10px;" /><p>Today, we have posted an update to the WebUI Studio 2012 R2 installer which addressed a few glitches related to samples and installation. In addition, the installer “refresh” also includes newer product builds across ASP.NET, Silverlight and WPF tools for enhanced cross-platform compatibility and improved reliability. It’s highly recommended to install WebUI Studio 2012 R2 using the latest installer which you can download <a href="http://www.intersoftpt.com/RequestTrial" target="_blank">here</a>.</p>
<p>The installer “refresh” includes numerous updates that are focused around the new technical samples for Silverlight and WPF. In case you didn’t aware, we now include comprehensive technical samples starting from this release. The difference with the live samples is that technical samples are strongly focused on the product features – and there are no fancy stuff such as decorator graphics or complex styling – so you can quickly and easily discover the “how-to” and knowledge to implement a particular feature of the new products.</p>
<p>If you haven’t seen the technical samples yet, now is a good time to take a look at it. It’s installed by default, and can be found in the Intersoft WebUI Studio program group under the respective platform group. In this release, the technical samples include over 150 samples for charting and 40 samples for the other new products such as Query Builder, Property Grid and BreadCrumb. </p>
<p>Each feature of the new product is covered in each separate sample, making it easy for you to learn the context of a particular feature. With simple interface and intuitive navigation, getting around with the samples is easy and fast – you should try it for yourself.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/sl_technicalsamples.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="ClientUI Technical Samples (Silverlight)" border="0" alt="ClientUI Technical Samples (Silverlight)" src="http://intersoftpt.files.wordpress.com/2013/01/sl_technicalsamples_thumb.png" width="642" height="479"></a></p>
<p>Note that the technical samples is available in both Silverlight and WPF platform with the same codebase. The WPF samples demonstrate that the same features available in Silverlight are also working flawlessly in WPF – from the basic features to the animation and user experiences. Here’s the screenshot for the technical samples in WPF.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/wpf_technicalsamples.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="ClientUI Technical Samples (WPF)" border="0" alt="ClientUI Technical Samples (WPF)" src="http://intersoftpt.files.wordpress.com/2013/01/wpf_technicalsamples_thumb.png" width="642" height="425"></a></p>
<p>Again, the technical samples is installed by default when you install WebUI Studio for Silverlight and WPF, so there’s no additional download needed. It can be found in the Intersoft WebUI Studio program group under the respective platform group.</p>
<p>I hope you enjoyed the comprehensive learning resources we added in this release. Any questions or feedback are highly welcomed. Thank you for reading! </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2013/01/webui-studio-2012-r2-installer-refresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2012 R2 Online Samples and Documentation Updated</title>
		<link>http://blog.intersoftsolutions.com/2013/01/2012-r2-online-samples-and-documentation-updated/</link>
		<comments>http://blog.intersoftsolutions.com/2013/01/2012-r2-online-samples-and-documentation-updated/#comments</comments>
		<pubDate>Fri, 04 Jan 2013 07:55:52 +0000</pubDate>
		<dc:creator><![CDATA[Jimmy Petrus]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ClientUI]]></category>
		<category><![CDATA[New Releases]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WebUI Studio]]></category>
		<category><![CDATA[WebUI Studio ASP.NET]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2997</guid>
		<description><![CDATA[First of all, Happy New Year! I hope you enjoyed building apps with our tools in the past year, and we look forward to work with you again in 2013! We’ve plenty of exciting new products that we’re planning in this new year, and we’ll [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/clientuidoc_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="ClientUI Online Documentation" style="float:right; margin:0 0 10px 10px;" /><p>First of all, Happy New Year! I hope you enjoyed building apps with our tools in the past year, and we look forward to work with you again in 2013! We’ve plenty of exciting new products that we’re planning in this new year, and we’ll update our roadmap shortly in the next few weeks. </p>
<p>In case you missed the news, we’ve shipped the 2012 R2 volume release last month. You can download it <a href="http://www.intersoftpt.com/RequestTrial" target="_blank">here</a>, and check out the what’s new list <a href="http://www.intersoftpt.com/2012" target="_blank">here</a>. In addition to the new products listed in the “what’s new” list, the R2 release actually ships much more new features and enhancements that weren’t listed in the website. For instances, we also introduced sophisticated “cell locking” feature in UXGridView, brand-new theme manager, performance improvements in all combobox-variant controls, new usability feature in UXRibbon, and much more.</p>
<p>Where can I see all the new features and enhancements, you might asked. It’s in the documentation that you can access online today. The online product documentation features lightweight navigation interface similar to those in Help Viewer. You can easily browse through each topic from the left-side tree navigation, or from the breadcrumb at the top.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/clientuidoc.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="ClientUI Online Documentation" border="0" alt="ClientUI Online Documentation" src="http://intersoftpt.files.wordpress.com/2013/01/clientuidoc_thumb.png" width="642" height="460"></a></p>
<p>I’ve compiled several interesting topics that I think you should check out:</p>
<ul>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/WhatsNewInClientUI8.html" target="_blank">What’s New in ClientUI 8</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/ThemeManagerOverview.html" target="_blank">Theme Manager Overview</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/UXChart.html" target="_blank">UXChart Overview</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/UXBreadCrumb.html" target="_blank">UXBreadCrumb Overview</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/UXQueryBuilder.html" target="_blank">UXQueryBuilder Overview</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/UXPropertyGrid.html" target="_blank">UXPropertyGrid Overview</a>
<li><a href="http://www.intersoftpt.com/Support/ClientUI/Docs/Walkthroughs.html" target="_blank">Walkthrough and How-to Topics</a></li>
</ul>
<p>In addition to the online documentation, we’ve also recently updated the online samples for ASP.NET. The online samples now reflect the latest release which includes all-new WebDesktop samples demonstrating HTML5 and CSS3 support. In addition, many of the samples have been updated to the latest Modern UI styles. </p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/asplivesamples.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="ASP.NET Live Samples" border="0" alt="ASP.NET Live Samples" src="http://intersoftpt.files.wordpress.com/2013/01/asplivesamples_thumb.png" width="642" height="414"></a></p>
<p>Among dozens of WebDesktop controls that receive full HTML5 support, one that is quite noteworthy is the WebPaneManager control which undergone major surgery in order to achieve “fluid layout” that works in HTML5 browsers. If you’ve worked with layouting in HTML5, I trust you already foresee the difficulty level to create “fluid layout” that supports dynamic width/height, not to mention the support for nested groups and resizing and other UX features. Luckily, you can easily achieve complex layout now using the enhanced WebPaneManager control. See the following screenshot for example.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2013/01/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebPaneManager supports fluid layout in HTML5" border="0" alt="WebPaneManager supports fluid layout in HTML5" src="http://intersoftpt.files.wordpress.com/2013/01/image_thumb.png" width="630" height="482"></a></p>
<p>The beauty of the new WebPaneManager is that it’s very lightweight – thanks to the revamped layout from TABLE to DIV, and more importantly, it supports combination of fluid and static width/height – all without requiring scripting! This means that when users resize the browser, they’ll see real-time response. We haven’t seen a control with such capabilities thus far in the market, so we’re pleased to be the first delivering such innovative controls to you. </p>
<p>Well, you can check out the WebPaneManager samples and the rest of updated ASP.NET online samples <a href="http://live.intersoftpt.com/" target="_blank">here</a>. Enjoy! </p>
<p>Best,<br />Jimmy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2013/01/2012-r2-online-samples-and-documentation-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Business-inspiring Samples in ClientUI 8</title>
		<link>http://blog.intersoftsolutions.com/2012/12/new-business-inspiring-samples-in-clientui-8/</link>
		<comments>http://blog.intersoftsolutions.com/2012/12/new-business-inspiring-samples-in-clientui-8/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 07:47:55 +0000</pubDate>
		<dc:creator><![CDATA[martinlie]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[ClientUI]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2985</guid>
		<description><![CDATA[We’re excited to announce the latest WebUI Studio 2012 R2 release which is now immediately available for download here. In this R2 release, we’ve added dozens of new powerful controls for Silverlight and WPF that users have been waiting for. For ASP.NET, we’ve completely redesigned [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/salesdashboard_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="UXChart - Sales Dashboard" style="float:right; margin:0 0 10px 10px;" /><p>We’re excited to announce the latest WebUI Studio 2012 R2 release which is now immediately available for download <a href="http://www.intersoftpt.com/WebUIStudio/Try">here</a>. In this R2 release, we’ve added dozens of new powerful controls for Silverlight and WPF that users have been waiting for. For ASP.NET, we’ve completely redesigned the new WebDesktop from the ground up to support the latest web standards such as HTML5 and CSS3.</p>
<p>To discover new controls and features that we’ve included in R2 release, you can visit <a href="http://www.intersoftpt.com/2012">What&#8217;s New in 2012 R2</a>. In this blog post, I will share some of the featured reference samples demonstrating the new products, as well as reviewing the key features.</p>
<p>Below are some of the top new samples that go to my favorite list.</p>
<ol>
<li><b>Sales Dashboard</b><br />
UXChart is a collection of advanced charting control coupled with powerful MVVM data-binding capability for your Silverlight and WPF business application. UXChart takes any kind of data and transform them into beautiful charts that can leverage your business presentation.In this sample, UXChart is used to display the sales overview of Northwind&#8217;s merchandise over time while demonstrating its selection ability. Notice that there are 4 different types of chart, which are pie, doughnut, smooth lines and multiple series column charts. If you select one of the pie area in the upper left corner chart, the selected pie area exploded as the rest of the charts moves fluently to show the data corresponding to the selected area. <a href="http://live.clientui.com/#/DataVisualization/Reference">Explore the sample</a>.<br />
<a href="http://intersoftpt.files.wordpress.com/2012/12/salesdashboard.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="UXChart - Sales Dashboard" alt="UXChart - Sales Dashboard" src="http://intersoftpt.files.wordpress.com/2012/12/salesdashboard_thumb.png" width="642" height="356" border="0" /></a></li>
<li><b>Revenue Analysis</b><br />
UXChart is created on top of an advanced canvas that provides reliable support for interactivity features such as zooming, panning, and box selection.This sample shows UXChart amazing zoom capability in a Profit / Loss analysis scenario. The zoom options are enabled by default which allows users to easily zoom into specific area of the chart. You can move the zoom slider or scroll your mouse wheel to zoom in/out on the cursor position. See that the content seamlessly shrink and grow while maintaining the perfect gridline thickness thanks to UXChart advanced rendering technique. Pan through your data while maintaining your zoom level by dragging the slider or canvas to any direction. Try double clicking on the chart canvas to activate the step zoom feature. <a href="http://live.clientui.com/#/DataVisualization/Reference/RevenueAnalysis">Explore the sample.</a><a href="http://intersoftpt.files.wordpress.com/2012/12/revenueanalysis.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="UXChart - Revenue Analysis" alt="UXChart - Revenue Analysis" src="http://intersoftpt.files.wordpress.com/2012/12/revenueanalysis_thumb.png" width="642" height="359" border="0" /></a></li>
<li><b>Sales Drill Down</b><br />
UXChart supports data drill down. In a drilldown chart, the data plots in each chart (for example pie slieces in Pie chart or columns in Column chart) act as hotspots to reveal the breakdown values of the selected data. With UXChart’s solid architecture you can even create multiple levels of drilldown.This sample created to showcase UXChart built-in drill down capability in a Product List scenario. Along with presenting exquisite charts, UXChart also pays close attention to every element involved in the charting control in order to bring state-of-the-art user experiences. Enjoy smooth animation as UXChart loads your data for the first time or during value changes. Both axis intervals are capable of shrinking and growing dynamically to cope with fluctuating data during zooming operation. <a href="http://live.clientui.com/#/DataVisualization/Reference/SalesDrillDown">Explore the sample</a>.<a href="http://intersoftpt.files.wordpress.com/2012/12/salesdrildown.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="SalesDrilDown" alt="SalesDrilDown" src="http://intersoftpt.files.wordpress.com/2012/12/salesdrildown_thumb.png" width="642" height="359" border="0" /></a></li>
<li><b>Hospital Management</b><br />
UXChart is a suite of business-oriented charting toolset equipped with a diverse list of chart types. It comes with more than 20 different chart types including bar, column, line, area, smooth line, smooth area, step area, donut, pie, bubble, radar, polar, scatter, stacked bar, stacked column, and more.In this sample, UXChart is used to present a hospital bed management dashboard. The Weekly Accuracy of Discharge Prediction chart shows how UXChart can bring more dynamics in data illustration by customizing the x-axis into percentage display. With UXChart, you don&#8217;t have to move your cursor on top of a particular data point to view its value. Try to move your cursor near any data points and the intelligent nearest-point-finder feature will trigger the intuitive tooltips to reveal the exact value behind the chart for accurate data reading. <a href="http://live.clientui.com/#/DataVisualization/Reference/HospitalManagement">Explore the sample</a>.<a href="http://intersoftpt.files.wordpress.com/2012/12/hospitalmanagement.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="HospitalManagement" alt="HospitalManagement" src="http://intersoftpt.files.wordpress.com/2012/12/hospitalmanagement_thumb.png" width="642" height="366" border="0" /></a></li>
<li><b>Web Analytics</b><br />
UXChart is engineered from the ground up with solid architecture to ensure blazing-fast performance and maximum scalability. It offers full support for MVVM data binding which unlocks the possibility of real-time chart update within your business application.This sample shows how UXChart can be used to display real-time traffic data and its associated data. With UXChart you don&#8217;t have to try hard pointing your cursor in order to read values behind a data point. Try to move your cursor near any data point and the intelligent nearest-point-finder feature will trigger the intuitive tooltips to reveal the exact value behind the chart for accurate data reading. Notice how the tooltip glides smoothly from one data point to another as you move your cursor around. <a href="http://live.clientui.com/#/DataVisualization/Reference/WebAnalytics">Explore the sample</a>.<a href="http://intersoftpt.files.wordpress.com/2012/12/webanalytic.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="WebAnalytic" alt="WebAnalytic" src="http://intersoftpt.files.wordpress.com/2012/12/webanalytic_thumb.png" width="642" height="360" border="0" /></a></li>
<li><b>Housing Filter<br />
</b>UXQueryBuilder is an advanced data filtering control that allows user to dynamically build complex queries through an intuitive user interface. UXQueryBuilder also supports server-side filtering through QueryDescriptor, FilterDescriptors or client-side filtering through CollectionView. In this sample, uses QueryBuilder to filter a collection of houses in a house finder scenario. <a href="http://live.clientui.com/#/Editors/UXQueryBuilder">Explore the sample</a>.<a href="http://intersoftpt.files.wordpress.com/2012/12/housingfilter.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="HousingFilter" alt="HousingFilter" src="http://intersoftpt.files.wordpress.com/2012/12/housingfilter_thumb.png" width="642" height="366" border="0" /></a></li>
<li><b>Heritage Property Finder<br />
</b>UXPropertyGrid is a versatile editor control that displays the properties of an object, which support all kinds of data types including text, boolean, date-time and even advanced data types such as enumeration.UXPropertyGrid allows multiple object properties to be displayed and edited. Therefore, this sample uses this control to edit a collection of house properties. Try holding Shift key while selecting several houses and notice how UXPropertyGrid lists all properties that are common to the two objects.<a href="http://intersoftpt.files.wordpress.com/2012/12/propertyfinder.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="PropertyFinder" alt="PropertyFinder" src="http://intersoftpt.files.wordpress.com/2012/12/propertyfinder_thumb.png" width="642" height="366" border="0" /></a></li>
<li><strong>Customer List</strong><br />
UXPropertyGrid provides built-in data binding support to read property values from a data source. With full MVVM support, you can easily populate a data collection property from a ViewModel. In addition, the component model annotation support allows the control to read the property&#8217;s settings automatically based on the specified attributes, such as the display caption, format string, maximum length, and many others.<a href="http://intersoftpt.files.wordpress.com/2012/12/customerlist.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="CustomerList" alt="CustomerList" src="http://intersoftpt.files.wordpress.com/2012/12/customerlist_thumb.png" width="642" height="366" border="0" /></a></li>
<li><strong>Windows-style File Explorer<br />
</strong>UXBreadCrumb is an advanced navigation control that allows users to easily navigate between pages, with the familiar look of Windows Explorer navigation. UXBreadCrumb combines the address bar and menu functionality in an elegant single interface, enabling users to perform navigation in simple point-and-click manner.This sample shows how to emulate Windows-style file explorer while highlighting UXBreadCrumb&#8217;s powerful features such as load-on-demand and full MVVM support. Try to navigate around different nodes and notice that the icon and address are automatically synchronized to the current navigation target. Thanks to smart resizing feature, UXBreadCrumb automatically resize and adjust the URI into ellipsis text when the URI is exceeding the limit.<a href="http://intersoftpt.files.wordpress.com/2012/12/fileexplorer.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="FileExplorer" alt="FileExplorer" src="http://intersoftpt.files.wordpress.com/2012/12/fileexplorer_thumb.png" width="593" height="404" border="0" /></a></li>
<li><strong>Help Viewer<br />
</strong>UXBreadCrumb unleashes its maximum potential when a sitemap data is provided. It is automatically synchronized to the current navigation page. Users will also appreciate the sleek interface, ISO-compliance modal input and intuitive keyboard navigation.This sample demonstrates the UXBreadcrumb&#8217;s dynamic sitemap reading capability by populating the navigation nodes from external XML file. This control full supports both mouse and keyboard for navigating and editing. Try to use keyboard arrows to navigate between items and press F2 to enter editing mode where you can directly type in the target URL. Alternatively, you also can click the arrow down icon to enter the editing mode.<a href="http://intersoftpt.files.wordpress.com/2012/12/helpviewer.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="HelpViewer" alt="HelpViewer" src="http://intersoftpt.files.wordpress.com/2012/12/helpviewer_thumb.png" width="642" height="385" border="0" /></a></li>
</ol>
<p>To find out more samples and experience it for yourself, please visit <a href="http://live.clientui.com/">ClientUI Live Samples</a>.</p>
<p>Feel free to download your copy <a href="http://www.clientui.com/download/">here</a>. And while waiting for the download, be sure to check out the complete what’s new list <a href="http://www.intersoftpt.com/2012/">here</a>. Existing customers with valid subscription can obtain the latest WebUI Studio from <a href="http://dev2.intersoftpt.com/">Developer Network</a>, under My Components shortcut.</p>
<p>Any comments or feedbacks are welcome. If you have any questions regarding your account and subscriptions, please feel free to reach me by <a href="mailto:martin@intersoftpt.com">email</a>.</p>
<p>Thank you and have a nice day.</p>
<p>Cheers,<br />
Martin Lie</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2012/12/new-business-inspiring-samples-in-clientui-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ClientUI 8 Goes RTM with Redesigned Live Samples</title>
		<link>http://blog.intersoftsolutions.com/2012/12/clientui-8-goes-rtm-with-redesigned-live-samples/</link>
		<comments>http://blog.intersoftsolutions.com/2012/12/clientui-8-goes-rtm-with-redesigned-live-samples/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 20:23:56 +0000</pubDate>
		<dc:creator><![CDATA[Jimmy Petrus]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ClientUI]]></category>
		<category><![CDATA[New Releases]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[UI Components]]></category>
		<category><![CDATA[WebUI Studio]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2953</guid>
		<description><![CDATA[Finally, the wait is over! The new WebUI Studio 2012 R2 release is here with tons of new exciting tools and templates that will surely boost up your development productivity. Despite of the slight delay, I trust the new release worth the wait. First off, [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/livesamples1_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="Introducing the all-new ClientUI live samples" style="float:right; margin:0 0 10px 10px;" /><p>Finally, the wait is over! The new WebUI Studio 2012 R2 release is here with tons of new exciting tools and templates that will surely boost up your development productivity. Despite of the slight delay, I trust the new release worth the wait. First off, we don’t just release new controls to add to your toolbox, we also ship a number of new templates to help you quickly getting started with your projects. Furthermore, we’ve added over 175 new technical samples and over 75 new reference samples – all with brand-new look and feel and completely redesigned user experiences. With these inspiring samples, we wanted to help you unleash your big ideas and creativity and take them to the next level.</p>
<p>Alright, before we gone too far, here are some important links that you’ll need for this new release.</p>
<ul>
<li><a href="http://www.intersoftpt.com/WebUIStudio/Try">Download WebUI Studio 2012 R2</a>
<li><a href="http://www.intersoftpt.com/2012">What’s New in 2012 R2</a>
<li><a href="http://live.intersoftpt.com/">ASP.NET Live Samples</a>
<li><a href="http://live.clientui.com/">ClientUI Live Samples</a></li>
</ul>
<h2>All-new, Completely Redesigned Live Samples.</h2>
<p>In addition to many new controls we shipped in this release, we’re pleased to announce the all-new ClientUI live samples with completely redesigned user interface. It’s now featuring larger screen real estate, clean and modern design that allows one to focus better on content, and more intuitive navigation. And for the first time since its first debut 4 years ago, all controls now perform 70% faster than before – thanks to the continuous performance tuning and memory usage optimization. </p>
<p>More importantly, the new live samples puts some of the new R2 controls in action, so you can see how they can be leveraged in your own apps. I’m particularly referring to the new breadcrumb navigation control which completely redefines the overall navigation experiences. Combining hybrid address bar and menu functionality into an elegant user interface, you can now perform navigation in a simple “point-and-click” manner. Let’s take a look at the overview of the redesigned live samples below.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/livesamples1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Introducing the all-new ClientUI live samples" border="0" alt="Introducing the all-new ClientUI live samples" src="http://intersoftpt.files.wordpress.com/2012/12/livesamples1_thumb.png" width="802" height="572"></a></p>
<p>And because we loved this intuitive navigation control so much, we decided to release it as a standalone reusable control to our valued customers. Feel free to unleash your big ideas and make it work your own way. Desktop application developers may rejoice! The navigation control is also available in WPF version, so you can be the first to build Windows 8 Explorer style business applications! We also shipped a WPF project template that leverages this versatile navigation control. More on that later.</p>
<p>In addition to the intuitive navigation, you can notice a whole new user experience that our designer team have put into this new live samples, for instances, it sports the improved CoverFlow with realistic depth shadow, better coverage on What’s New and Featured section – thanks to the fluid design allowing you to see more items in larger screen and adapts to reduced items in smaller screen.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/livesamples2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Fluid design and improved CoverFlow" border="0" alt="Fluid design and improved CoverFlow" src="http://intersoftpt.files.wordpress.com/2012/12/livesamples2_thumb.png" width="802" height="537"></a></p>
<p>And now to the core part, the entire sample canvas has been revamped as well. Unnecessary toolbars and buttons are gone, fancy gradients are wiped out, options and other navigation elements are centralized to a collapsible pane. Embracing on the modern design, it’s now possible for us to create beautiful, full-screen user experience. See the following screenshot for details.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/livesamples3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Experience beautiful, full-screen samples." border="0" alt="Experience beautiful, full-screen samples." src="http://intersoftpt.files.wordpress.com/2012/12/livesamples3_thumb.png" width="802" height="927"></a></p>
<p>Enough said, visit the new <a href="http://live.clientui.com/">ClientUI live samples</a> now and experience it for yourself.</p>
<p>In this blog post, I only scratched the surface of the new exciting stuff that we delivered in this release. We’re fully passionate about design and user experiences that balance very well with functionality – and we carefully put that into the engineering process. That said, you can find that all our controls are engineered with thoughtful user experiences, in addition to the rich features and functionalities of course – that’s what sets us apart from other products in the market. </p>
<p>Last but not least, enjoy WebUI Studio 2012 R2! Hopefully this release comes just in time, so you can play around it now and make some planning for your big ideas in the next year. Again, <a href="http://www.intersoftpt.com/WebUIStudio/Try">here’s</a> the link to download in case you haven’t done so, and make sure you check out the complete what’s new list <a href="http://www.intersoftpt.com/2012">here</a>.</p>
<p>All the best,<br />Jimmy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2012/12/clientui-8-goes-rtm-with-redesigned-live-samples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Introducing WebDesktop 4 – Final Part</title>
		<link>http://blog.intersoftsolutions.com/2012/12/introducing-webdesktop-4-final-part/</link>
		<comments>http://blog.intersoftsolutions.com/2012/12/introducing-webdesktop-4-final-part/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 07:25:38 +0000</pubDate>
		<dc:creator><![CDATA[martinlie]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[intersoft]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[Visual Studio 2012]]></category>
		<category><![CDATA[WebDesktop]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2945</guid>
		<description><![CDATA[Continuing my blog series on our upcoming release, I’m pleased to share the final part of WebDesktop’s development for HTML5 and CSS3. In my previous posts, I’ve shared the development progress of converting WebDesktopManager controls into HTML5. You can check the previous posts here: Part [...]]]></description>
				<content:encoded><![CDATA[<img width="314" height="216" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/html5_thumb1.png" class="attachment-post-thumbnail wp-post-image" alt="WebNavPane before modified in HTML5" style="float:right; margin:0 0 10px 10px;" /><p>Continuing my blog series on our upcoming release, I’m pleased to share the final part of WebDesktop’s development for HTML5 and CSS3. In my previous posts, I’ve shared the development progress of converting WebDesktopManager controls into HTML5. You can check the previous posts here: <a href="http://intersoftpt.wordpress.com/2012/08/23/getting-ready-for-html5-components-part-1/">Part 1</a> and <a href="http://intersoftpt.wordpress.com/2012/10/08/html5-development-part-2/">Part 2</a>. In this final part of my post, I’m going to cover the new features for the rest of WebDesktop controls such as WebDesktopManager, WebDialogBox, WebPaneManager, WebSplitter, WebNotification and many others.</p>
<p>In version 4, WebDesktop has been refined to fully support the latest web standards. This allows you to use many of the advanced WebDesktop features in your next-generation web applications and at the same time leveraging cutting-edge technologies such as HTML5 and CSS3. With our latest innovation of “Windows 8 ready” Component Designer, you can easily configure every properties and styles using the latest Visual Studio 2012.</p>
<h2>WebNavPane</h2>
<p>WebNavPane is one of the many UI controls demanded by application developers. Unfortunately, the existing WebNavPane was designed for HTML4 which mainly uses table for layouting. The first time when we convert WebNavPane to HTML5, we encountered issues with the layout such as shown below:</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/html5.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebNavPane before modified in HTML5" border="0" alt="WebNavPane before modified in HTML5" src="http://intersoftpt.files.wordpress.com/2012/12/html5_thumb.png" width="314" height="216"></a></p>
<p>As you can see, WebNavPane’s border doesn’t get rendered properly and the container becomes smaller. After improving the control to support HTML5, the layout and rendering now shows a perfect results, such as shown below:</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/html4.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebNavPane after modified in HTML5." border="0" alt="WebNavPane after modified in HTML5." src="http://intersoftpt.files.wordpress.com/2012/12/html4_thumb.png" width="299" height="351"></a></p>
<p>Furthermore, we’ve also added a metro style in the latest WebNavPane. This control has been redesigned and developed to fully inherit the styles in Windows 8. And of course, we’re ready to give the best UI in styles and performance in the latest Windows 8.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/webnavpanemetro.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebNavPaneMetro" border="0" alt="WebNavPaneMetro" src="http://intersoftpt.files.wordpress.com/2012/12/webnavpanemetro_thumb.png" width="258" height="482"></a></p>
<h2>WebCallOut</h2>
<p>Previously, we’ve discussed about the layout issues occurring in WebCallOut when it is set to HTML5 in the beginning. The rendering is completely messed up and the pointer is also offset from the correct position. After numerous improvements made, we’re happy to introduce metro styling in the latest WebCallOut. The metro styles consist of Metro Orange, Metro Silver and metro Simple such as shown below:</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/metrosimple.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebCallOut Metro Simple" border="0" alt="WebCallOut Metro Simple" src="http://intersoftpt.files.wordpress.com/2012/12/metrosimple_thumb.png" width="238" height="87"></a></p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/metrosilver.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebCallOut Metro Silver" border="0" alt="WebCallOut Metro Silver" src="http://intersoftpt.files.wordpress.com/2012/12/metrosilver_thumb.png" width="239" height="90"></a></p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/metroorange.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebCallOut Metro Orange" border="0" alt="WebCallOut Metro Orange" src="http://intersoftpt.files.wordpress.com/2012/12/metroorange_thumb.png" width="240" height="80"></a></p>
<h2>WebExplorerPane</h2>
<p>We’ve extremely improved WebExplorerPane from its layout. Rendering its layout in HTML5 is much more complex than HTML4. However, we’ve managed to overcome these obstacles and proudly introduced the new metro style in the latest WebExplorerPane.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/webexplorerpanemetro.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebExplorerPane Metro Style" border="0" alt="WebExplorerPane Metro Style" src="http://intersoftpt.files.wordpress.com/2012/12/webexplorerpanemetro_thumb.png" width="230" height="482"></a></p>
<p>It perfectly renders and matches the “Windows 8-ready” styling starting from its layout, font color and style and many others.</p>
<h3>WebDesktopManager</h3>
<p>As we’ve discussed in <a href="http://intersoftpt.wordpress.com/2012/10/08/html5-development-part-2/">previous Part 2</a>, there are numerous enhancements in the window and desktop rendering. Since the new specification in HTML5 introduces a number of limitations of TABLE usage, therefore we’ve decided to remove all TABLE usage and use DIV instead.</p>
<p>WebDesktop 4 has added 3 new features to give users freedom in perform styling over WebDesktopManager. Now, the icon in Taskbar is no longer depending on window or shortcut. They can be determined by defining the TaskBarImage property in WebDesktopWindow or WebDesktopShortcut.</p>
<p>You can perform styling to container when using complex image border type. In the previous version, the container’s style will not be assigned in the container itself when using complex image. Starting from WebDesktop 4, you can easily perform styling by setting the ApplyContainerStyle property to true.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/1.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebDesktopManager Metro Style" border="0" alt="WebDesktopManager Metro Style" src="http://intersoftpt.files.wordpress.com/2012/12/1_thumb.jpg" width="642" height="392"></a></p>
<h3>WebDialogBox</h3>
<p>The changes made in WebDialogBox is almost similar to WebDesktopWindow. By inheriting WebDesktopWindow’s structure, WebDialogBox is rendered using DIV instead of TABLE. With HTML5, the rendering of each browser will be more consistent and more solid than HTML4. WebDialogBox also supports CSS3 for its styling.</p>
<h2>Introducing Metro theme for WebDesktop</h2>
<p>Since the invention of “Metro” design language, Microsoft has been redesigning all its software products toward the modern UI design, including the recently released Microsoft Windows 8. As a leading tool vendor, we’re pleased to be the among the first to support Metro design language.</p>
<p>That said, our designer team has designed a comprehensive Metro theme that can be easily applied to all existing WebDesktop controls such as WebDesktopManager, WebDialogBox, WebTab and so on. Each control theme is thoughtfully designed to get the right look and feel particularly when it comes to contrast colors. See the screenshot below.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/metro.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebDesktop Metro Style" border="0" alt="WebDesktop Metro Style" src="http://intersoftpt.files.wordpress.com/2012/12/metro_thumb.png" width="602" height="482"></a></p>
<p>The following screenshots show the Metro theme running on WebDesktop 4. Remember, these are real web applications built on ASP.NET, and run on your favorite browsers.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/10.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="WebNavPane Metro Style" border="0" alt="WebNavPane Metro Style" src="http://intersoftpt.files.wordpress.com/2012/12/10_thumb.jpg" width="642" height="392"></a></p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/12/4.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Outlook Metro Style" border="0" alt="Outlook Metro Style" src="http://intersoftpt.files.wordpress.com/2012/12/4_thumb.jpg" width="642" height="392"></a></p>
<p>The new WebDesktop 4 will be available in the upcoming R2 release which is going to be shipped anytime soon in this December 2012. Be sure to stay updated with the next announcement.</p>
<p>Cheers,<br />Handy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2012/12/introducing-webdesktop-4-final-part/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Coming in 2012 R2: Intersoft-designed Charts, Powerful Query Builder, Modern UI Themes, and much more</title>
		<link>http://blog.intersoftsolutions.com/2012/11/coming-in-2012-r2-intersoft-designed-charts-powerful-query-builder-modern-ui-themes-and-much-more/</link>
		<comments>http://blog.intersoftsolutions.com/2012/11/coming-in-2012-r2-intersoft-designed-charts-powerful-query-builder-modern-ui-themes-and-much-more/#comments</comments>
		<pubDate>Sat, 03 Nov 2012 01:37:37 +0000</pubDate>
		<dc:creator><![CDATA[Jimmy Petrus]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[ClientUI]]></category>
		<category><![CDATA[Metro]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WebUI Studio]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2902</guid>
		<description><![CDATA[It&#8217;s really been a busy month for everyone in the DevDiv at Intersoft as we&#8217;re heading toward R2 release. As we haven&#8217;t post any new updates recently, you might have been wondering what we&#8217;re up to. Thankfully, you&#8217;ve just tuned in at the right time [...]]]></description>
				<content:encoded><![CDATA[<img width="466" height="270" src="http://blog.intersoftsolutions.com/wp-content/uploads/2014/09/chartingux_thumb1-604x350.png" class="attachment-post-thumbnail wp-post-image" alt="Intersoft Chart takes user experience to a whole new level" style="float:right; margin:0 0 10px 10px;" /><p>It&#8217;s really been a busy month for everyone in the DevDiv at Intersoft as we&#8217;re heading toward R2 release. As we haven&#8217;t post any new updates recently, you might have been wondering what we&#8217;re up to. Thankfully, you&#8217;ve just tuned in at the right time because I have some very exciting updates to share in this blog post. </p>
<p>For a decade, we&#8217;ve been doing what we do best – creating user interface components that are beautiful inside and out where amazing user experiences meet powerful functionality. And today, we&#8217;ve made some of the world&#8217;s best tools that help developers build amazing applications ahead of time. But we don&#8217;t stop here. In the upcoming release, you&#8217;ll find a handful of new exciting tools that do what it does best, so you can stay focused on your business requirements and things that matter the most to you.</p>
<p>The upcoming R2 release is an exceptionally important milestone for us and our valued customers. After nearly a year of intensive development iterations, we&#8217;re pleased to say that we&#8217;ve recently reaching the stable sprints and will deliver two of the most wanted products in this release. </p>
<p>For the first time ever, say hello to Intersoft&#8217;s own charting data visualization suite which will target a broad range of platforms. And business developers may rejoice! A full-fledged XAML reporting engine is coming your way which includes a powerful C# style scripting support for the most demanding business reports. Read on. </p>
<h2>Gorgeous charts. Uncompromised performance. </h2>
<p>Written from the ground up, Intersoft Charting delivers everything you need to create beautiful charts for your business apps, plus dozens of innovative features not available elsewhere. </p>
<p>We started off our engineering by creating&nbsp; an advanced canvas that provides reliable support for interactivity features such as zooming, panning, and box selection. We took the zooming capability to the next level by supporting horizontal, vertical, or both directions. And together with smooth panning, resizing with aspect ratio locking and region zoom, Intersoft Charting is built for touch-first user experiences in mind.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/chartingux.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Intersoft Chart takes user experience to a whole new level" border="0" alt="Intersoft Chart takes user experience to a whole new level" src="http://intersoftpt.files.wordpress.com/2012/11/chartingux_thumb.png" width="809" height="443"></a></p>
<p>Furthermore, Intersoft Charting employs the most advanced rendering technique that puts data points and lines in the most accurate device pixel in your screen. This translates to crystal clear results, and no more blurry lines!</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/intersoftchartrendering.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Intersoft Chart delivers pixel-perfect, gorgeous data visualization" border="0" alt="Intersoft Chart delivers pixel-perfect, gorgeous data visualization" src="http://intersoftpt.files.wordpress.com/2012/11/intersoftchartrendering_thumb.png" width="802" height="402"></a></p>
<p>Designed by Intersoft&#8217;s own artists, the brand new charting will offer four predefined color schemes and styles that you can choose with a simple property set. Whether you prefer vivid colors, natural colors, or Metro colors, there&#8217;s a palette for that. Or if you prefer to use your own palettes, feel free to define as many custom palettes as you like and reuse them throughout the chart instances.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/chartpalettes.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Intersoft Designed Palettes" border="0" alt="Intersoft Designed Palettes" src="http://intersoftpt.files.wordpress.com/2012/11/chartpalettes_thumb.png" width="793" height="399"></a></p>
<p>With numerous great features such as smart axis intervals, MVVM support for series binding, linked charts, and over 20+ stunning chart types; we&#8217;re confident that Intersoft Charting will deliver an ultimate, enterprise-grade data visualization solution for all your application development needs. More details on Charting will be posted in a separate post by our engineers. </p>
<h2>Build Complex Query Visually</h2>
<p>Business users have been long asking for the flexibility to edit queries/filters at runtime, but very few provide such functionality in the market. One of the reasons is the design challenges that require extensive research on the user experiences to make it work beautifully. I’m excited to introduce our newest data-aware control lineups: UXQueryBuilder.</p>
<p>Query Builder is an advanced data filtering control that allows users to visually build complex queries/filters. Take a look at the Query Builder’s control design below.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/querybuilderoverview.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="QueryBuilder Design Overview" border="0" alt="QueryBuilder Design Overview" src="http://intersoftpt.files.wordpress.com/2012/11/querybuilderoverview_thumb.png" width="709" height="502"></a></p>
<p>It’s designed in such a way that allows users to interact with complex nested conditions through an intuitive, modern user interface. When a nested filter is added, the control automatically creates a visual branch. It’s also packed with numerous built-in subtle animations to deliver smooth user experiences, such as when a condition is added or removed, and when a single condition is converted to a composite condition.</p>
<p>More importantly, the Query Builder works seamlessly with all ClientUI data controls that are built upon QueryDescriptor framework. This means that you can connect the Query Builder to a Grid View in a simple property set. And you’ll find that things just work – adding a new filter condition and see the Grid’s data will be filtered accordingly.</p>
<p>One of the engineering excellences we put on this control is the capability to support Entity Framework’s navigation properties out of the box – you gotta love this feature! So whenever the Query Builder finds navigation properties in your object, it will list them to the available properties which users can use as the filter condition without extra efforts at developer’s end. Of course, you can exclude certain navigation properties if desired.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/querybuildernavigationproperties.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Built-in Navigation Properties Support" border="0" alt="Built-in Navigation Properties Support" src="http://intersoftpt.files.wordpress.com/2012/11/querybuildernavigationproperties_thumb.png" width="718" height="314"></a></p>
<p>And in most cases, your data model might include master-detail relations, think of Product&nbsp; table that has CategoryID field. It won’t make sense for users to remember the ID to be able to filter a category – I trust you’ll agree with me on that! Thankfully, we built a feature that lets you pre-populate the master data when the control requires it. We make it as simple as possible so that you only have to define an attribute to your model and specify the class that will handle the data retrieval, either synchronously or asynchronously.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/querybuildertablelookup.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Pre-populate details lookup asynchronously" border="0" alt="Pre-populate details lookup asynchronously" src="http://intersoftpt.files.wordpress.com/2012/11/querybuildertablelookup_thumb.png" width="859" height="498"></a></p>
<h2>Modern UI Themes and Design Templates</h2>
<p>All the buzzes and hypes are on Windows 8 as Microsoft launched its latest operating system last week. Although the new UI looks cool and modern at a glance, it could be very challenging in the design process. Without thoughtful design, you may eventually end up with too-plain, boring colorful boxes. I’ve started to find such apps in the Windows Store which exhibits lower apps quality and leads to poor user experiences.</p>
<p>The good news is that we’ll be coming up with very exciting and fresh design themes that comply with the Windows 8 Modern UI. We decided to include the new themes in this upcoming release, thanks to your vote up. Every control is redesigned meticulously – pixel by pixel, color by color, and shape by shape – to create look and feel that are fresh and modern. The result is a balanced combination of design that embraces modern lines but still look great on eyes.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/intersoftmetrotemplates.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Intersoft Designed Modern UI Themes" border="0" alt="Intersoft Designed Modern UI Themes" src="http://intersoftpt.files.wordpress.com/2012/11/intersoftmetrotemplates_thumb.png" width="814" height="621"></a></p>
<p>But we don’t just create themes, we took it to a whole new level where the entire design is connected to a set of accent colors that you can personalize, thanks to the brand-new theme manager. We designed the templates from the bottom up in order to achieve a kind of design that looks great in both light and dark theme, on the top of the customizable color theme. Every design aspects, from the font family, size, vector-based icons and colors are all thoughtfully connected to achieve such beautiful results.</p>
<p>It’s such an excellent engineering process that combines great architecture and beautiful design that makes it possible for the theme color to change instantly without performance degradation no matter how complex your content is. There are no visual tree tracing, no dependencies on certain structures or classes, and definitely no heavy-lifting such as scanning all the controls within the page.</p>
<p><a href="http://intersoftpt.files.wordpress.com/2012/11/intersoftthemeaware.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Theme-aware design lets users personalize application and color theme" border="0" alt="Theme-aware design lets users personalize application and color theme" src="http://intersoftpt.files.wordpress.com/2012/11/intersoftthemeaware_thumb.png" width="820" height="572"></a></p>
<p>And the best of all, our design team will come up with a few stunning project templates that you can use instantly to create your next-generation, modern-style business apps in both Silverlight and WPF platforms.</p>
<h2>And more&#8230;</h2>
<p>In this blog post, I’ve only scratched the surface of what we’ll come up with in the upcoming release. There are much more new exciting lineups that I couldn’t cover in this single post. In conclusion, this release will be a very important milestone for us and our customers, particularly as we’re entering two huge market segments at once.</p>
<p>Finally, I hope you liked what you see so far. And if you’ve got questions or feedback, make sure you write them down in the comment box below. Thanks for reading, and stay tuned for my next post!</p>
<p>All the best,<br />Jimmy</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2012/11/coming-in-2012-r2-intersoft-designed-charts-powerful-query-builder-modern-ui-themes-and-much-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>October Special Double Offer</title>
		<link>http://blog.intersoftsolutions.com/2012/10/october-special-double-offer/</link>
		<comments>http://blog.intersoftsolutions.com/2012/10/october-special-double-offer/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 07:52:06 +0000</pubDate>
		<dc:creator><![CDATA[martinlie]]></dc:creator>
				<category><![CDATA[2012 R2]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Products]]></category>

		<guid isPermaLink="false">https://intersoftpt.wordpress.com/?p=2893</guid>
		<description><![CDATA[Good day to all of you. In this opportunity, I’d like to announce our special double promo in this month. If you purchase any of WebUI Studio subscription license, you will be given a direct 20% discount. Then, you will have a privilege to enter [...]]]></description>
				<content:encoded><![CDATA[<p>Good day to all of you.</p>
<p>In this opportunity, I’d like to announce our special double promo in this month. If you purchase any of WebUI Studio subscription license, you will be given a direct 20% discount. Then, you will have a privilege to enter our Wheel of Fortune page to claim your prize. For more information about this lucky promo, see the following link:<br />
<a href="http://intersoftpt.com/Corporate/News.aspx?page=News&amp;EventId=211">http://intersoftpt.com/Corporate/News.aspx?page=News&amp;EventId=211</a></p>
<p>The promo will be effective from 10th October 2012 until 30th November 2012. Don&#8217;t miss out this special promo! Grab your WebUI Studio subscription license today through our <a href="http://intersoftpt.com/Store/" target="_blank">online store</a>.</p>
<p>Please contact me immediately at <a href="mailto:martin@intersoftpt.com">martin@intersoftpt.com</a> to join this limited offer.</p>
<p>Thank you and look forward to seeing you in our Wheel of Fortune promo.</p>
<p>Regards,<br />
Martin</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.intersoftsolutions.com/2012/10/october-special-double-offer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
