<?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>Fundamental Provocation &#187; Microsoft</title> <atom:link href="http://www.ajaymatharu.com/category/technology/microsoft/feed/" rel="self" type="application/rss+xml" /><link>http://www.ajaymatharu.com</link> <description>Blog by Ajay Matharu</description> <lastBuildDate>Sun, 06 Nov 2011 15:09:39 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>New Google design like Bing</title><link>http://www.ajaymatharu.com/new-google-design-like-bing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-google-design-like-bing</link> <comments>http://www.ajaymatharu.com/new-google-design-like-bing/#comments</comments> <pubDate>Thu, 06 May 2010 18:48:29 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Search Engine]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Bing Vs Google]]></category> <category><![CDATA[Design of google]]></category> <category><![CDATA[Google design]]></category> <category><![CDATA[Google design similar to bing]]></category> <category><![CDATA[Google New Design]]></category> <category><![CDATA[Google Vs Bing]]></category> <category><![CDATA[Google vs Microsoft]]></category> <category><![CDATA[Microsoft vs Google]]></category> <category><![CDATA[New design of google]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2299</guid> <description><![CDATA[I just came across Google&#8217;s new design. I was wondering I have seen this design somewhere so I just opened Bing to compare the design and what I saw was shocking. Google has mimicked Bing&#8217;s design. Here is Google&#8217;s New Design And here is the Bing&#8217;s Design Google didn&#8217;t checked the Bing&#8217;s design? or Google [...]]]></description> <content:encoded><![CDATA[<p>I just came across Google&#8217;s new design. I was wondering I have seen this design somewhere so I just opened Bing to compare the design and what I saw was shocking. Google has mimicked Bing&#8217;s design.</p><p>Here is Google&#8217;s New Design<br /><div id="attachment_2302" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.ajaymatharu.com/wp-content/uploads/2010/05/Google2.png" alt="Google's New Design" title="Google's New Design" width="600" height="410" class="size-full wp-image-2302" /><p class="wp-caption-text">Google's New Design</p></div></p><p>And here is the Bing&#8217;s Design<br /><div id="attachment_2303" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.ajaymatharu.com/wp-content/uploads/2010/05/bing.png" alt="Bing&#039;s Design" title="Bing&#039;s Design" width="600" height="350" class="size-full wp-image-2303" /><p class="wp-caption-text">Bing's Design</p></div></p><p>Google didn&#8217;t checked the Bing&#8217;s design? or Google liked the Bing&#8217;s design so much? <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> What&#8217;s your say on this?</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/new-google-design-like-bing/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Insert data from XML in SQL</title><link>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=insert-data-from-xml-in-sql</link> <comments>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/#comments</comments> <pubDate>Fri, 26 Mar 2010 04:56:37 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[SQL]]></category> <category><![CDATA[Insert xml in sql]]></category> <category><![CDATA[Multiple Records]]></category> <category><![CDATA[OpenXML]]></category> <category><![CDATA[SQL with XML]]></category> <category><![CDATA[xml format]]></category> <category><![CDATA[XML in SQL]]></category> <category><![CDATA[XML with SQL]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2188</guid> <description><![CDATA[Its been very long since I have written any technical post. So here I am, with small example of how to insert data from XML into SQL. This is extremely helpful if you want to insert multiple records in one go into SQL, you just need to create the XML and pass it to SQL. [...]]]></description> <content:encoded><![CDATA[<p>Its been very long since I have written any technical post. So here I am, with small example of how to insert data from XML into SQL. This is extremely helpful if you want to insert multiple records in one go into SQL, you just need to create the XML and pass it to SQL. SQL will fetch the data from the XML and save it into its tables you have mapped.</p><p>Just to demonstrate I am creating a sample table. Since it is sample I have not created any Primary Key on it.</p><pre class="sql" name="code">CREATE TABLE [dbo].[Employees](
	[EmpId] [int] NOT NULL,
	[FirstName] [varchar](50) NULL,
	[Dept] [varchar](50) NULL
)
</pre><p><br/><br /> Once table has been created you are ready to insert data into it,</p><pre class="sql" name="code">declare @TestDoc int
declare @TestDoc int
exec sp_xml_preparedocument @TestDoc output,
N'<Root>
<Employees Dept="Marketing">
<Employee EmpID="1231" FirstName="Ethan"></Employee>
<Employee EmpID="1232" FirstName="Ashish"></Employee>
</Employees>
<Employees Dept="IT">
<Employee EmpID="1241" FirstName="Ajay"></Employee>
<Employee EmpID="1242" FirstName="Rahul"></Employee>
</Employees>
<Employees Dept="DBA">
<Employee EmpID="1251" FirstName="AJ"></Employee>
<Employee EmpID="1251" FirstName="Nilesh"></Employee>
</Employees>
</Root>'
insert into employees(empid, firstname, dept)
select empid, firstname, dept
from openxml(@TestDoc, N'/Root/Employees/Employee')
With (EmpId varchar(5) '@EmpID',
    FirstName varchar(10) '@FirstName',
    Dept varchar(10) '../@Dept')
exec sp_xml_removedocument @TestDoc
</pre><p><br/><br /> Alternatively, you can change your XML format like this,</p><pre class="sql" name="code">
declare @TestDoc int
exec sp_xml_preparedocument @TestDoc output,
N'<Root>
<Employees Dept="Marketing">
<Employee EmpID="1231">Ethans</Employee>
<Employee EmpID="1232">Ajay</Employee>
</Employees>
<Employees Dept="IT">
<Employee EmpID="1241">Rahul</Employee>
<Employee EmpID="1242">Sneha</Employee>
</Employees>
<Employees Dept="DBA">
<Employee EmpID="1251">Nilesh</Employee>
<Employee EmpID="1251">Matharu</Employee>
</Employees>
</Root>'
select *
from openxml(@TestDoc, N'/Root/Employees/Employee')
With (EmpId varchar(5) '@EmpID',
    FirstName varchar(10) '.',
    Dept varchar(10) '../@Dept')
exec sp_xml_removedocument @TestDoc
</pre><p><br/></p><p>If you want to fetch your existing data from SQL in XML format,<br /> With values as attributes,</p><pre class="sql" name="code">select * from employees
for xml auto
</pre><p><br/><br /><div id="attachment_2189" class="wp-caption aligncenter" style="width: 574px"><img class="size-full wp-image-2189" title="Output Data as Attributes" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Data-as-attribute.png" alt="Output Data as Attributes" width="564" height="119" /><p class="wp-caption-text">Output Data as Attributes</p></div><br /> <br/><br /> With values as elements,</p><pre class="sql" name="code">select * from employees
for xml auto, elements
</pre><p><br/><br /><div id="attachment_2190" class="wp-caption aligncenter" style="width: 319px"><img class="size-full wp-image-2190" title="Output Data as Elements" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/data-as-elements.png" alt="Output Data as Elements" width="309" height="519" /><p class="wp-caption-text">Output Data as Elements</p></div></p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/insert-data-from-xml-in-sql/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Tools to improve your productivity</title><link>http://www.ajaymatharu.com/tools-to-improve-your-productivity/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tools-to-improve-your-productivity</link> <comments>http://www.ajaymatharu.com/tools-to-improve-your-productivity/#comments</comments> <pubDate>Tue, 23 Mar 2010 10:56:46 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Productivity]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Clipboard manager]]></category> <category><![CDATA[Ditto]]></category> <category><![CDATA[Ditto clipboard manager]]></category> <category><![CDATA[Humanized Enso]]></category> <category><![CDATA[tools to improve productivity]]></category> <category><![CDATA[Windows Productive tools]]></category> <category><![CDATA[Windows Tools]]></category> <category><![CDATA[Zapnotes]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2169</guid> <description><![CDATA[Day before I posted about Firefox addons to improve your productivity here are some Windows OS tools which you can use to improve your productivity. I use it on daily basis and love using it Enso You just hold down the Caps Lock key and type an Enso command, which is displayed in a translucent [...]]]></description> <content:encoded><![CDATA[<p>Day before I posted about <a href="../firefox-addons-to-improve-your-productivity/">Firefox addons to improve your productivity</a> here are some Windows OS tools which you can use to improve your productivity. I use it on daily basis and love using it <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><a href="http://humanized.com/enso/">Enso</a></p><div id="attachment_2206" class="wp-caption aligncenter" style="width: 458px"><img class="size-full wp-image-2206" title="Humanizedenso" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Humanizedenso.jpg" alt="Humanized Enso" width="448" height="200" /><p class="wp-caption-text">Humanized Enso</p></div><p>You just hold down the Caps Lock key and type an Enso command, which is displayed in a translucent overlay. Once the command is typed, you simply release the Caps Lock key to activate it, and the overlay disappears. If you type fast, it all happens in a flash. For instance, to launch the Firefox Web browser, you just hold down the Caps Lock key and type &#8220;open firefox.&#8221; To look up the meaning of the word &#8220;proclivity,&#8221; you just hold down the Caps Lock key and type &#8220;define proclivity.&#8221;</p><p><a href="http://zapnotes.demarque.com/en/">ZapNotest</a></p><div id="attachment_2173" class="wp-caption aligncenter" style="width: 532px"><img class="size-full wp-image-2173" title="Zapnotes" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/zapnotes.png" alt="" width="522" height="481" /><p class="wp-caption-text">Zapnotes</p></div><p style="text-align: center;"><ul><li>ZapNotes automatically saves content every minute unless you deactivate the automatic save feature in the &#8220;Options&#8221; menu.</li><li>The content of ZapNotes is never erased, unless you use the &#8220;New&#8221; option in the &#8220;File&#8221; menu.</li><li>You can export ZapNotes content to another file using the &#8220;Export&#8221; option in the &#8220;File&#8221; menu.</li></ul><p><a href="http://ditto-cp.sourceforge.net/">Ditto Clipboard Manager</a></p><div id="attachment_2171" class="wp-caption aligncenter" style="width: 441px"><img class="size-full wp-image-2171" title="Ditto Clipboard Manager" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Ditto_crp.png" alt="" width="431" height="380" /><p class="wp-caption-text">Ditto Clipboard Manager</p></div><p style="text-align: center;"><ul><li>Search and paste previous copy entries</li><li><strong>Keep multiple computer&#8217;s clipboards in sync</strong></li><li>Data is encrypted when sent over the network</li><li>Accessed from tray icon or global hot key</li><li>Select entry by double click, enter key or drag drop</li><li>Paste into any window that excepts standard copy/paste entries</li><li>Display thumbnail of copied images in list</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/tools-to-improve-your-productivity/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>GodMode in Windows 7</title><link>http://www.ajaymatharu.com/godmode-in-windows-7/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=godmode-in-windows-7</link> <comments>http://www.ajaymatharu.com/godmode-in-windows-7/#comments</comments> <pubDate>Mon, 22 Mar 2010 10:28:44 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[GodMode in Windows 7]]></category> <category><![CDATA[Windows 7 and GodMode]]></category> <category><![CDATA[Windows 7 GodMode]]></category> <category><![CDATA[windows7]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2183</guid> <description><![CDATA[Windows 7 is really awesome. I am loving Windows 7. It has got lots of features one of the most awesome feature I found was the GodMode In windows 7. GodMode in Windows 7 contains all the settings options. It is one place stop for all the setting in Windows 7. To activate this feature [...]]]></description> <content:encoded><![CDATA[<p>Windows 7 is really awesome. I am loving Windows 7. It has got lots of features one of the most awesome feature I found was the GodMode In windows 7.</p><p>GodMode in Windows 7 contains all the settings options. It is one place stop for all the setting in Windows 7.</p><div id="attachment_2185" class="wp-caption aligncenter" style="width: 710px"><img class="size-full wp-image-2185" title="Windows 7 GodMode" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/Godmode11.png" alt="Windows 7 GodMode" width="700" height="407" /><p class="wp-caption-text">Windows 7 GodMode</p></div><p>To activate this feature follow the following steps,</p><ul><li>Create a folder named GodMode in any drive</li><li>Rename the folder and append &#8220;.{ED7BA470-8E54-465E-825C-99712043E01C}&#8221; (without quotes)</li><li>Renamed folder name should look like &#8220;GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}&#8221;</li><li>Once you rename it the folder icon will be changed and the folder will be renamed to GodMode.</li></ul><div id="attachment_2186" class="wp-caption aligncenter" style="width: 645px"><img class="size-full wp-image-2186" title="GodMode in Windows7" src="http://www.ajaymatharu.com/wp-content/uploads/2010/03/GodMode.png" alt="GodMode in Windows7" width="635" height="119" /><p class="wp-caption-text">GodMode in Windows7</p></div><p>Some other strings which you can use after period (.)</p><p>{00C6D95F-329C-409a-81D7-C46C66EA7F33}<br /> {0142e4d0-fb7a-11dc-ba4a-000ffe7ab428}<br /> {025A5937-A6BE-4686-A844-36FE4BEC8B6D}<br /> {05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}<br /> {1206F5F1-0569-412C-8FEC-3204630DFB70}<br /> {15eae92e-f17a-4431-9f28-805e482dafd4}<br /> {17cd9488-1228-4b2f-88ce-4298e93e0966}<br /> {1D2680C9-0E2A-469d-B787-065558BC7D43}<br /> {1FA9085F-25A2-489B-85D4-86326EEDCD87}<br /> {208D2C60-3AEA-1069-A2D7-08002B30309D}<br /> {20D04FE0-3AEA-1069-A2D8-08002B30309D}<br /> {2227A280-3AEA-1069-A2DE-08002B30309D}<br /> {241D7C96-F8BF-4F85-B01F-E2B043341A4B}<br /> {4026492F-2F69-46B8-B9BF-5654FC07E423}<br /> {62D8ED13-C9D0-4CE8-A914-47DD628FB1B0}<br /> {78F3955E-3B90-4184-BD14-5397C15F1EFC}</p><p>Happy exploring Windows 7</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/godmode-in-windows-7/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Court Reaffirms I4i&#8217;s Patent Win Against Microsoft</title><link>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=court-reaffirms-i4is-patent-win-against-microsoft</link> <comments>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/#comments</comments> <pubDate>Mon, 15 Mar 2010 08:59:56 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[i4i patent]]></category> <category><![CDATA[i4i vs microsoft]]></category> <category><![CDATA[i4i vs microsoft word]]></category> <category><![CDATA[microsoft employees]]></category> <category><![CDATA[patented technology]]></category> <category><![CDATA[u s federal court]]></category> <category><![CDATA[versions of microsoft word]]></category> <category><![CDATA[xml documents]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=2122</guid> <description><![CDATA[VS The U.S. Federal Court of Appeals has once again upheld a jury&#8217;s verdict that Microsoft willfully infringed on patents awarded to i4i. The verdict, which the appeals court first affirmed in December, required Microsoft to pay more than US$240 million in damages and forced it to remove a feature in versions of Microsoft Word [...]]]></description> <content:encoded><![CDATA[<div><div class="wp-caption alignleft" style="width: 210px"><img title="I4I" src="http://ajaymatharu.files.wordpress.com/2010/03/i4i.jpg" alt="I4I" width="200" height="200" /><p class="wp-caption-text">I4I</p></div><div class="wp-caption alignright" style="width: 210px"><img title="Microsoft" src="http://ajaymatharu.files.wordpress.com/2010/03/officeword.png" alt="Microsoft Word" width="200" height="200" /><p class="wp-caption-text">Microsoft Word</p></div><p><strong style="font-size: 72px;position:relative;top:100px;left:15px"> VS</strong></p></div><div style="clear: both;"><p>The U.S. Federal Court of Appeals has once again upheld a jury&#8217;s verdict that Microsoft willfully infringed on patents awarded to i4i.</p><p>The verdict, which the appeals court first affirmed in December, required Microsoft to pay more than US$240 million in damages and forced it to remove a feature in versions of Microsoft Word 2007 starting in January. Microsoft had been charged with infringing a patent owned by i4i with a feature in Word 2003 and 2007 that lets people create custom XML documents.</p><p>Microsoft asked the appeals court to reconsider its decision, and on Wednesday the appeals court upheld its previous affirmation of the district court ruling. Much of the latest decision is identical to the December document, except for an expanded explanation of the three-judge panel&#8217;s decision to uphold the &#8220;willfulness&#8221; issue.</p><p>&#8220;A reasonable jury could have concluded that Microsoft &#8216;willfully&#8217; infringed the &#8217;449 patent based on the evidence presented at trial,&#8221; the judges wrote. The decision pointed to evidence presented at the trial showing that Microsoft employees attended demonstrations of i4i software and received i4i sales kits that identified the software as patented technology. This piece of evidence and others imply that Microsoft was aware of the i4i patent, the decision says.</p><p>&#8220;Similarly, there is no evidence Microsoft ever made a good faith effort to avoid infringement; internal emails show Microsoft intended to render i4i&#8217;s product &#8216;obsolete&#8217; and assure &#8216;there won&#8217;t be a need for [i4i's] product,&#8217;&#8221; the judges wrote.</p><p>The panel will now circulate the document to the rest of the judges on the appeals court, who will decide whether to take up Microsoft&#8217;s request for an en banc review. If they do, that would mean that all 12 appeals court judges will reconsider the case.</p><p>There is no set time frame for the court to decide if it will accept the en banc request, but Loudon Owen, chairman of i4i, expects the court to decide in the next four to six weeks.</p><p>If the judges decide against an en banc review, Microsoft can ask the Supreme Court to hear the case, Owen said.</p><p>He was pleased with Wednesday&#8217;s decision. &#8220;From our perspective, there are only so many more avenues for appeal for them,&#8221; he said. &#8220;It also resulted in an even more detailed and structured decision in our interest.&#8221;</p><p>Microsoft did not immediately reply to a request for comment.</p></div> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/court-reaffirms-i4is-patent-win-against-microsoft/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>SharePoint Error: &#8220;The language-neutral solution package was not found&#8221;</title><link>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharepoint-error-the-language-neutral-solution-package-was-not-found</link> <comments>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/#comments</comments> <pubDate>Fri, 27 Nov 2009 07:52:13 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[.Net]]></category> <category><![CDATA[Development]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Sharepoint]]></category> <category><![CDATA[Visual Studio]]></category> <category><![CDATA[Language Neutral Package]]></category> <category><![CDATA[Sharepoint Error]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=1765</guid> <description><![CDATA[Last night while developing an event listener custom list, I ran into this error, SharePoint Error: &#8220;The language-neutral solution package was not found&#8221; The solution to this problem is, Restart your visual studio. And it will be back to normal. Hope this helps]]></description> <content:encoded><![CDATA[<p>Last night while developing an event listener custom list, I ran into this error,</p><blockquote><div> SharePoint Error: &#8220;The language-neutral solution package was not found&#8221;</div></blockquote><p>The solution to this problem is, Restart your visual studio. And it will be back to normal.</p><p>Hope this helps <img src='http://www.ajaymatharu.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/sharepoint-error-the-language-neutral-solution-package-was-not-found/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Using CS and VB code files together in App_Code</title><link>http://www.ajaymatharu.com/using-cs-and-vb-code-files-together-in-app_code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-cs-and-vb-code-files-together-in-app_code</link> <comments>http://www.ajaymatharu.com/using-cs-and-vb-code-files-together-in-app_code/#comments</comments> <pubDate>Sun, 06 Sep 2009 05:48:06 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[.Net]]></category> <category><![CDATA[Development]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Tip of Week]]></category> <category><![CDATA[Visual Studio]]></category> <category><![CDATA[App_Code]]></category> <category><![CDATA[C-Sharp]]></category> <category><![CDATA[code lt]]></category> <category><![CDATA[compilation]]></category> <category><![CDATA[config]]></category> <category><![CDATA[CS]]></category> <category><![CDATA[CS & VB]]></category> <category><![CDATA[different languages]]></category> <category><![CDATA[Different Languages in project]]></category> <category><![CDATA[Multi-Language]]></category> <category><![CDATA[Multiple coding Language]]></category> <category><![CDATA[VB]]></category> <category><![CDATA[vb code]]></category> <category><![CDATA[vb files]]></category> <category><![CDATA[vbcode]]></category> <category><![CDATA[web.config]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=1465</guid> <description><![CDATA[Many a times you require to use both C-Sharp (C#) and Visual Basic (VB) code class files in the same project. If you just place your both the code files in your App_Code directly this is the error you&#8217;ll see, &#8220;The files &#8216;/BlogEngine.Web/App_Code/VBCode/Class1.vb&#8217; and &#8216;/BlogEngine.Web/App_Code/CSCode/Extensions/BreakPost.cs&#8217; use a different language, which is not allowed since they [...]]]></description> <content:encoded><![CDATA[<p>Many a times you require to use both C-Sharp (C#) and Visual Basic (VB) code class files in the same project.</p><p>If you just place your both the code files in your App_Code directly this is the error you&#8217;ll see,</p><p>&#8220;The files &#8216;/BlogEngine.Web/App_Code/VBCode/Class1.vb&#8217; and &#8216;/BlogEngine.Web/App_Code/CSCode/Extensions/BreakPost.cs&#8217; use a different language, which is not allowed since they need to be compiled together.&#8221;</p><p>But you can get this done, here is a very simple way you can try that out,</p><p>1) First make two folders in App_code with foldernames as<br /> - CSCode<br /> - VBCode</p><p>2) Modify the Web.config with following code:</p><pre name="code" class="xml">&lt;compilation debug="false"&gt;
 &lt;codeSubDirectories&gt;
 &lt;add directoryName="VBCode" /&gt;
 &lt;add directoryName="CSCode" /&gt;
 &lt;/codeSubDirectories&gt;
&lt;/compilation&gt;</pre>]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/using-cs-and-vb-code-files-together-in-app_code/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>How to protect yourself from &#8220;Conflicker&#8221; Worm</title><link>http://www.ajaymatharu.com/how-to-protect-yourself-from-conflicker-worm/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-protect-yourself-from-conflicker-worm</link> <comments>http://www.ajaymatharu.com/how-to-protect-yourself-from-conflicker-worm/#comments</comments> <pubDate>Fri, 24 Jul 2009 03:34:40 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Anti-Virus]]></category> <category><![CDATA[Conflicker]]></category> <category><![CDATA[Downadup]]></category> <category><![CDATA[Kido]]></category> <category><![CDATA[Virus]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Worm]]></category><guid isPermaLink="false">http://ajaymatharu.wordpress.com/?p=861</guid> <description><![CDATA[Millions of Windows computers have been infected by a new computer worm dubbed &#8220;Conficker.&#8221; The situation is &#8220;not getting better,&#8221; but rather is &#8220;getting worse,&#8221; according to security software vendor F-Secure. In a blog post, F-Secure security researchers report that the number of machines infected by the Downadup worm has skyrocketed from roughly 2.4 million [...]]]></description> <content:encoded><![CDATA[<p>Millions of Windows computers have been infected by a new computer worm dubbed &#8220;Conficker.&#8221; The situation is &#8220;not getting better,&#8221; but rather is &#8220;getting worse,&#8221; according to security software vendor F-Secure.</p><p>In a <a href="http://www.f-secure.com/weblog/archives/00001584.html">blog post</a>, F-Secure security researchers report that the number of machines infected by the Downadup worm has skyrocketed from roughly 2.4 million to over 8.9 million in the last four days alone.</p><p>Downadup is a malicious worm that &#8220;uses computer or network resources to make complete copies of itself,&#8221; according to F-Secure. And it may also include code or other malware that damages both a computer and network. The worm also goes by the names &#8220;Kido&#8221; and &#8220;Conflicker.&#8221; Details on how it operates and how to remove it are <a href="http://www.f-secure.com/v-descs/worm_w32_downadup_al.shtml#details">here</a>.</p><p>Once executed, Downadup disables a number of system services, including Windows Automatic Update, Windows Security Center, Windows Defender, and Windows Error Reporting. The worm then connects to a malicious server, where it downloads additional malware to install on the infected computer. Computerworld provides a more detailed report on Downadup&#8217;s potential dangers.</p><p>Since Downadup uses random extension names to avoid detection, Windows users should make sure their security software is set to scan all files, rather than checking on specific extensions, F-Secure recommends.</p><p>The alarmingly high number of Downadup infections led Microsoft last Tuesday to enable its anti-malware utility, Microsoft Software Removal Tool (MSRT), to detect the worm. So it&#8217;s important that Windows users, if they haven&#8217;t already, download the latest Microsoft security patch that went out earlier this week.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/how-to-protect-yourself-from-conflicker-worm/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Add drop down list to Excel</title><link>http://www.ajaymatharu.com/add-drop-down-list-to-excel/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=add-drop-down-list-to-excel</link> <comments>http://www.ajaymatharu.com/add-drop-down-list-to-excel/#comments</comments> <pubDate>Mon, 13 Jul 2009 15:27:38 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[data entry]]></category> <category><![CDATA[drop down list]]></category> <category><![CDATA[excel sheet]]></category> <category><![CDATA[highlight]]></category> <category><![CDATA[Microsoft Excel]]></category> <category><![CDATA[Microsoft Office]]></category> <category><![CDATA[office applications]]></category><guid isPermaLink="false">http://ajaymatharu.wordpress.com/?p=719</guid> <description><![CDATA[In Access, you can limit user entries by forcing users to choose a value from a list control. Office applications use the same functionality in built-in drop-down lists. For instance, the Highlight and Font Color controls on most Formatting toolbars use this flexible tool. Simply click the small triangle to the right of the icon [...]]]></description> <content:encoded><![CDATA[<div class="entry"><p>In Access, you can limit user entries by forcing users to choose a value from a list control. Office applications use the same functionality in built-in drop-down lists. For instance, the Highlight and Font Color controls on most Formatting toolbars use this flexible tool. Simply click the small triangle to the right of the icon to display a list of choices.</p><p>You can create the same type of control for your users in an Excel sheet, but the process isn’t intuitive. The option is in the Data Validation feature. Fortunately, once you know the feature exists, it’s easy to implement. You need only two things: a list and a data entry cell. The following sheet shows a simple drop-down list in an Excel sheet.</p><p><img class="aligncenter size-full wp-image-720" title="excel" src="http://ajaymatharu.files.wordpress.com/2008/12/excel.jpg" alt="excel" width="320" height="115" /></p><p>Users click the drop-down arrow to display a list of items from A1:A4. If a user tries to enter something that isn’t in the list, Excel rejects the entry. To add this drop-down list to a sheet, do the following:</p><ol><li>Create the list in cells A1:A4. Similarly, you can enter the items in a single row, such as A1:D4.</li><li>Select cell E3. (You can position the drop-down list in most any cell or even multiple cells.)</li><li>Choose Validation from the Data menu.</li><li>Choose List from the Allow option’s drop-down list. (See, they’re everywhere.)</li><li>Click the Source control and drag to highlight the cells A1:A4. Alternately, simply enter the reference (=$A$1:$A$4).</li><li>Make sure the In-Cell Dropdown option is checked. If you uncheck this option, Excel still forces users to enter only list values (A1:A4), but it won’t present a drop-down list.</li><li>Click OK.</li></ol><p>You can add the drop-down list to multiple cells. Select the range of data input cells (step 2) instead of a single cell. It even works for noncontiguous cells. Hold down the Shift key while you click the appropriate cells.</p><p>It’s worth noting that the drop-down arrow is visible only when the cell is active.</p></div><p></p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/add-drop-down-list-to-excel/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>GOOGLE Chrome OS &#8211; Can it kill MICROSOFT?</title><link>http://www.ajaymatharu.com/google-chrome-os-can-it-kill-microsoft/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-chrome-os-can-it-kill-microsoft</link> <comments>http://www.ajaymatharu.com/google-chrome-os-can-it-kill-microsoft/#comments</comments> <pubDate>Thu, 09 Jul 2009 07:56:29 +0000</pubDate> <dc:creator>Ajay Matharu</dc:creator> <category><![CDATA[Chrome]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Microsoft]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Chrome OS]]></category> <category><![CDATA[Chrome vs Windows]]></category> <category><![CDATA[Google Chrome]]></category> <category><![CDATA[Google Operating System]]></category> <category><![CDATA[Google OS]]></category> <category><![CDATA[Google vs Microsoft]]></category> <category><![CDATA[Microsoft Windows]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[operating system]]></category><guid isPermaLink="false">http://www.ajaymatharu.com/?p=1483</guid> <description><![CDATA[Google has announced a new operating system project: Google Chrome OS. This is separate from Android, Google&#8217;s mobile phone OS. Chrome OS is a &#8220;open source, lightweight operating system&#8221;. It won&#8217;t be available until the second half of 2010, but the source code will be made available later this year. At the heart of the [...]]]></description> <content:encoded><![CDATA[<p>Google has announced a new operating system project: Google Chrome OS. This is separate from Android, Google&#8217;s mobile phone OS.</p><p>Chrome OS is a &#8220;open source, lightweight operating system&#8221;. It won&#8217;t be available until the second half of 2010, but the source code will be made available later this year.</p><p>At the heart of the OS is Google&#8217;s Chrome browser. In fact, the operating system appears to be little more than a secure platform for the browser to run upon. Google says the following: &#8220;Speed, simplicity and security are the key aspects of Google Chrome OS. We&#8217;re designing the OS to be fast and lightweight, to start up and get you onto the web in a few seconds.&#8221;</p><p>Some reasons Google Chrome OS will do wonders,</p><p>- It is OPEN SOURCE</p><p>Chrome OS appears to be based on a Linux kernel with a custom windowing system. It&#8217;s worth remembering that windowing/desktop interfaces matter less when you consider this is simply a browser-based operating system designed to get you online and push you towards online applications.</p><p>- GOOGLE is taking on MICROSOFT</p><p>Google is producing a product that directly competes with Windows. To add insult to injury, it&#8217;s open source &#8212; the one thing that Microsoft really hates.</p><p>By using open source, Google is positioning itself diametrically opposite Microsoft. In some ways, Google had no choice but to embrace open source.</p><p>- Chrome OS is just another sign that open source is going for an all-out attack on the netbook arena.</p><p>With Microsoft allegedly limiting the power and size of discount Windows XP-licensed netbooks, the door is open for Chrome OS to back better machines.</p><p>Some challenges for Google Chrome OS,</p><p>- Netbooks aren&#8217;t the world</p><p>Netbooks may be important, but they remain a tiny part of the world&#8217;s PC sales. Google&#8217;s bet is predicated on strong demand for weak computers. It also takes advantage of a kink in Microsoft&#8217;s armor: MS actually needs to sell its operating systems while Google can, for now, afford to just give Chrome away.</p><p>Google is counting on users of small computers not being tied to specific applications and being willing to accept low cost and, perhaps, ease of use over a more familiar and more powerful environment.</p><p>- Microsoft can shoot to kill</p><p>I&#8217;m Steve Ballmer and here&#8217;s what I say: Windows 7 NB (for netbooks) will be free through all of 2010. Starting right now. Anything Google can do, Microsoft can&#8211;at least theoretically&#8211;do better. Google wants to give away a netbook operating system? So can Microsoft.</p><p>It will be hard for regulators to complain as Microsoft is now reacting to a powerful competitor&#8217;s frontal assault on Windows. And placing and end date on the freebie&#8211;which can always be extended&#8211;allows MS to charge once Chrome is vanquished.</p><p>- Google Docs is the best they can do</p><p>Google&#8217;s cloud computing strategy so far is &#8220;applications lite,&#8221; which may be fine for occasional use, just like a netbook, but don&#8217;t meet enough needs to be a real solution.</p><p>- Compatibility</p><p>Compatibility, both hardware and software was the major reason why the world anointed Microsoft its King of Computing.</p><p>Compatibility really matters and while Chrome&#8217;s world may be complete as far as it reaches, there is always more. That&#8217;s why Windows, frustrating as it may be, will prevail. The &#8220;20&#8243; in the 80/20 Rule matters a lot more than proponents of &#8220;80 is good enough&#8221; like to think.</p> ]]></content:encoded> <wfw:commentRss>http://www.ajaymatharu.com/google-chrome-os-can-it-kill-microsoft/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
