<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>NinethSense Blog - Latest Comments</title><link>http://ninethsenseblog.disqus.com/</link><description>Praveen's Technical Blog</description><atom:link href="https://ninethsenseblog.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Fri, 03 May 2013 03:24:50 -0000</lastBuildDate><item><title>Re: Database Normalization 1-5NF</title><link>http://blog.ninethsense.com/database-normalization-1-5nf/#comment-883084669</link><description>&lt;p&gt;Thanks Ansil&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Nair</dc:creator><pubDate>Fri, 03 May 2013 03:24:50 -0000</pubDate></item><item><title>Re: Company Review: Orion India Systems Pvt. Ltd., Cochin</title><link>http://blog.ninethsense.com/company-review-orion-india-systems-pvt-ltd-cochin/#comment-883066522</link><description>&lt;p&gt;Hi ashique, Thanks for visiting my blog.&lt;/p&gt;&lt;p&gt;Btw, I am still working for ORION :). Yes I re-joined.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Nair</dc:creator><pubDate>Fri, 03 May 2013 02:32:11 -0000</pubDate></item><item><title>Re: Just back form K-Mug Global Windows Azure Bootcamp</title><link>http://blog.ninethsense.com/just-back-form-k-mug-global-windows-azure-bootcamp/#comment-879109893</link><description>&lt;p&gt;Appreciate your efforts for making this successful Praveen....&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">nagaraj easwara iyer</dc:creator><pubDate>Mon, 29 Apr 2013 00:19:39 -0000</pubDate></item><item><title>Re: FlySheet &amp;ndash; An Open Source timesheet application using .NET</title><link>http://blog.ninethsense.com/flysheet-an-open-source-timesheet-application-using-net/#comment-865647667</link><description>&lt;p&gt;Hi Pravin, Nice application. I am starting somewhat similar project using ASP.Net MVC 3 any suggestions would you like to give me.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jatin</dc:creator><pubDate>Tue, 16 Apr 2013 21:23:16 -0000</pubDate></item><item><title>Re: Company Review: Orion India Systems Pvt. Ltd., Cochin</title><link>http://blog.ninethsense.com/company-review-orion-india-systems-pvt-ltd-cochin/#comment-858283690</link><description>&lt;p&gt;Then y did you leave the company after a few months?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ashique</dc:creator><pubDate>Wed, 10 Apr 2013 01:32:36 -0000</pubDate></item><item><title>Re: Database Normalization 1-5NF</title><link>http://blog.ninethsense.com/database-normalization-1-5nf/#comment-834375965</link><description>&lt;p&gt;The 2nd and 3 normal forms are better described as below&lt;/p&gt;&lt;p&gt;2nd NF :1 NF+ Every non-prime attribute of the table is dependent on the whole of a candidate key.&lt;/p&gt;&lt;p&gt;3rd NF: 2 NF + All nonprimary fields are dependent only the primary key.&lt;/p&gt;&lt;p&gt;More over there is a BCNF between 3rd and 4th&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ansil Fasuludeen</dc:creator><pubDate>Tue, 19 Mar 2013 03:06:06 -0000</pubDate></item><item><title>Re: Move a control with mouse on form &amp;#8211; .NET</title><link>http://blog.ninethsense.com/move-a-control-with-mose-on-form/#comment-810194445</link><description>&lt;p&gt;by the way, my idea didnt work =(&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ana</dc:creator><pubDate>Sat, 23 Feb 2013 19:55:11 -0000</pubDate></item><item><title>Re: Move a control with mouse on form &amp;#8211; .NET</title><link>http://blog.ninethsense.com/move-a-control-with-mose-on-form/#comment-810193925</link><description>&lt;p&gt;What if I need to move two or MORE buttons?? =((&lt;/p&gt;&lt;p&gt;I tried copying the code and changing the name but I only can move ONE BUTTON the first one!!!&lt;br&gt;LIKE THIS....&lt;/p&gt;&lt;p&gt;using System;&lt;br&gt;using System.Collections.Generic;&lt;br&gt;using System.ComponentModel;&lt;br&gt;using System.Data;&lt;br&gt;using System.Drawing;&lt;br&gt;using System.Text;&lt;br&gt;using System.Windows.Forms;&lt;/p&gt;&lt;p&gt;namespace WindowsApplication1&lt;br&gt;{&lt;br&gt;    public partial class Form1 : Form&lt;br&gt;    {&lt;br&gt;        private int x = 0;&lt;br&gt;        private int y = 0;&lt;br&gt;        public Form1()&lt;br&gt;        {&lt;br&gt;            InitializeComponent();&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;        private void button1_MouseDown(object sender, MouseEventArgs e)&lt;br&gt;        {&lt;br&gt;            x = e.X;&lt;br&gt;            y = e.Y;&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;        private void button1_MouseMove(object sender, MouseEventArgs e)&lt;br&gt;        {&lt;br&gt;            if (e.Button == MouseButtons.Left)&lt;br&gt;            {&lt;br&gt;                button1.Left = (button1.Left + e.X) - x;&lt;br&gt;                button1.Top = (button1.Top +e.Y)-y;&lt;br&gt;            }&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;//MY AMAZING IDEA!!******************&lt;br&gt;private void button2_MouseDown(object sender, MouseEventArgs e)&lt;br&gt;{&lt;br&gt;x = e.X;&lt;br&gt;y = e.Y;&lt;br&gt;}&lt;/p&gt;&lt;p&gt;private void button2_MouseMove(object sender, MouseEventArgs e)&lt;br&gt;{&lt;br&gt;if (e.Button == MouseButtons.Left)&lt;br&gt;{&lt;br&gt;button2.Left = (button2.Left + e.X) - x;&lt;br&gt;button2.Top = (button2.Top +e.Y)-y;&lt;br&gt;}&lt;br&gt;    }&lt;br&gt;}&lt;/p&gt;&lt;p&gt; =(((&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ana</dc:creator><pubDate>Sat, 23 Feb 2013 19:54:28 -0000</pubDate></item><item><title>Re: Attack Surface Analyzer</title><link>http://blog.ninethsense.com/attack-surface-analyzer/#comment-791710280</link><description>&lt;p&gt;You ever read @ flysheet or here? Doesnt feel like it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mannenMyten</dc:creator><pubDate>Thu, 07 Feb 2013 07:56:47 -0000</pubDate></item><item><title>Re: Attack Surface Analyzer</title><link>http://blog.ninethsense.com/attack-surface-analyzer/#comment-781996127</link><description>&lt;p&gt;Flysheet, question. I'd love to get it working on my machine and continue its development since its open-source. But there is no good install guide, and as a newbie its pretty intense, since there is really no documentation at all. I see ppl commented and asked about it too before on sourceforge, but you havent replied.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mannenMyten</dc:creator><pubDate>Tue, 29 Jan 2013 09:56:55 -0000</pubDate></item><item><title>Re: AS3 URLLoader problem with Arabic/Unicode</title><link>http://blog.ninethsense.com/as3-urlloader-problem-with-arabicunicode/#comment-778954033</link><description>&lt;p&gt;its exactly what i was looking for&lt;/p&gt;&lt;p&gt;thank you so0ooo much&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ziZa.s</dc:creator><pubDate>Sat, 26 Jan 2013 09:48:00 -0000</pubDate></item><item><title>Re: Saving image using Imagetools in Silverlight</title><link>http://blog.ninethsense.com/saving-image-using-imagetools-in-silverlight/#comment-725339470</link><description>&lt;p&gt;Hi, I am croping the image and save using above method but when I open the save image I found the image outer part is still there as tranparent ! how can I remove that ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Adnan Aziz</dc:creator><pubDate>Sun, 02 Dec 2012 06:20:18 -0000</pubDate></item><item><title>Re: Get value of controls with JavaScrpt when using ASP.NET Master Page</title><link>http://blog.ninethsense.com/how-to-get-value-of-controls-when-you-use-master-page/#comment-679617168</link><description>&lt;p&gt;You can further extend it by assigning this value to a javascript object and use it in external javascript files.&lt;/p&gt;&lt;p&gt;var PageVariables = {};&lt;br&gt;PageVariables["DDL"] = "#&amp;lt;%= DropDownList1.ClientID %&amp;gt;";&lt;br&gt;---&lt;br&gt;---&lt;br&gt;Somewhere in external file use it like:&lt;br&gt;$(PageVariables.DDL).val(2);&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Matoria</dc:creator><pubDate>Fri, 12 Oct 2012 03:47:07 -0000</pubDate></item><item><title>Re: Cron Task&amp;ndash;sync files to an FTP folder</title><link>http://blog.ninethsense.com/cron-tasksync-files-to-an-ftp-folder/#comment-652153871</link><description>&lt;p&gt;That's great! And where is ftpconnection.php?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David Perez</dc:creator><pubDate>Sun, 16 Sep 2012 07:04:46 -0000</pubDate></item><item><title>Re: HTML5 Background image moving animation</title><link>http://blog.ninethsense.com/html5-background-image-moving-animation/#comment-626661902</link><description>&lt;p&gt;HI! great tutorial! I used it for a project, but can not get the canvas to look right on the iphone? It is small, not moving.. any suggestions? Thanks!  Dannell&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dannell</dc:creator><pubDate>Thu, 23 Aug 2012 09:12:08 -0000</pubDate></item><item><title>Re: Mobile Website CMS: Sitecore vs Sitefinity</title><link>http://blog.ninethsense.com/mobile-website-cms-sitecore-vs-sitefinity/#comment-617096272</link><description>&lt;p&gt;                                    Hi Gabe,&lt;/p&gt;&lt;p&gt;Very happy to see your comment and thank you for visiting my blog.&lt;/p&gt;&lt;p&gt;The post was based on the info on Internet and the post is definitely&lt;br&gt; not complete. I know this gives more importance to Sitecore. I spent only 2-3 hours so it was really a quick analysis. I &lt;br&gt;had installed the trial on my laptop but was not working that that time &lt;br&gt;so did not do much research. But I will do more study and publish more &lt;br&gt;details. Also you can see I haven't touched tech words like MVC etc. &lt;br&gt;because I had business clients in mind.                            &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Nair</dc:creator><pubDate>Sun, 12 Aug 2012 01:43:20 -0000</pubDate></item><item><title>Re: Mobile Website CMS: Sitecore vs Sitefinity</title><link>http://blog.ninethsense.com/mobile-website-cms-sitecore-vs-sitefinity/#comment-615541255</link><description>&lt;p&gt;Hi Praveen.  Full disclosure, I work for Telerik - so take what I say with a grain of salt. ;)  We greatly appreciate that you took the time to evaluate Sitefinity.  The challenge with any marginally complex CMS is that there are numerous ways to tackle a given problem.  Form building, as any example.  You're correct this can be tackled in Sitefinity using a WebForms control or an MVC view.  Or it could be done with our Module Builder, if you need to define a new data model / content type.  Or it could be done with our Form Builder - which is designed with end-users in mind (drag &amp;amp; drop) and generates email responses.  This post serves as a nice overview / reference, but there are several items like this where our answer is similarly nuanced.  In general, we love to hear customers describe their core challenge or objective - then we can suggest the path we've envisioned.  Either way, thanks so much for taking a look at Sitefinity.  &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Gabe Sumner</dc:creator><pubDate>Fri, 10 Aug 2012 08:56:39 -0000</pubDate></item><item><title>Re: Six Sigma White Belt Certified now</title><link>http://blog.ninethsense.com/six-sigma-white-belt-certified-now/#comment-560225261</link><description>&lt;p&gt;I want to know how can i get this certificate please send me an email on harrymatharoo.matharoo@gmail.com &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Harrymatharoo Matharoo</dc:creator><pubDate>Sun, 17 Jun 2012 02:13:58 -0000</pubDate></item><item><title>Re: Move a control with mouse on form &amp;#8211; .NET</title><link>http://blog.ninethsense.com/move-a-control-with-mose-on-form/#comment-559920058</link><description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;Thank you for visiting my blog, trying code and votes :)&lt;br&gt; &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Nair</dc:creator><pubDate>Sat, 16 Jun 2012 14:10:35 -0000</pubDate></item><item><title>Re: Move a control with mouse on form &amp;#8211; .NET</title><link>http://blog.ninethsense.com/move-a-control-with-mose-on-form/#comment-559524450</link><description>&lt;p&gt;u r so genius . I found a cumbersome code to perform this activity but u r absolutely brilliant because you have used only few line of code to perfoem this activity.&lt;/p&gt;&lt;p&gt;santosh kumar yadav&lt;/p&gt;&lt;p&gt;software developer&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Santosh Mail2011</dc:creator><pubDate>Sat, 16 Jun 2012 06:51:30 -0000</pubDate></item><item><title>Re: Unable to find manifest signing certificate in the certificate store</title><link>http://blog.ninethsense.com/unable-to-find-manifest-signing-certificate-in-the-certificate-store/#comment-541078836</link><description>&lt;p&gt;thanks :D &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marksonnguyen</dc:creator><pubDate>Tue, 29 May 2012 12:07:57 -0000</pubDate></item><item><title>Re: Add watermark to an image using C#</title><link>http://blog.ninethsense.com/add-watermark-to-an-image-using-c/#comment-539623725</link><description>&lt;p&gt;Like DrawImage(), you have DrawString()&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Praveen Nair</dc:creator><pubDate>Sun, 27 May 2012 02:43:10 -0000</pubDate></item><item><title>Re: Add watermark to an image using C#</title><link>http://blog.ninethsense.com/add-watermark-to-an-image-using-c/#comment-539621181</link><description>&lt;p&gt;it run but how to add water mark as text at this please reply at. prince@globalitpoint.com&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Prince</dc:creator><pubDate>Sun, 27 May 2012 02:31:51 -0000</pubDate></item><item><title>Re: SharePoint WebPart deployment for beginners</title><link>http://blog.ninethsense.com/sharepoint-webpart-deployment-for-beginners/#comment-536076282</link><description>&lt;p&gt;Hi, how are you?&lt;/p&gt;&lt;p&gt;Maybe this page is outdated, but anyway I´m leaving this comment:&lt;br&gt;After following the instructions as you explained I´m getting this Error from the "Add Web Part Zone":This is in spanish as my server is in Mexico:&lt;br&gt;"No se pueden agregar los elementos Web seleccionados.""ContactForm Web Part: Otro usuario ha desprotegido el archivo o lo tiene bloqueado para su edición."&lt;/p&gt;&lt;p&gt;I hope my english translation is good enough:"It cannot add the Web Part selected"&lt;br&gt;"ContactForm Web Part: Another user has unprotected the file or it has it blocked"&lt;/p&gt;&lt;p&gt;Thank you in advance.&lt;/p&gt;&lt;p&gt;eBrain&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ebrainshodan</dc:creator><pubDate>Tue, 22 May 2012 17:56:47 -0000</pubDate></item><item><title>Re: VBA &amp;#8211; Connect SQL Server from Excel</title><link>http://blog.ninethsense.com/vba-connect-sql-server-from-excel/#comment-500358009</link><description>&lt;p&gt;Thanks for providing a working script&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rajcup</dc:creator><pubDate>Tue, 17 Apr 2012 21:18:31 -0000</pubDate></item></channel></rss>