Archive for April, 2007

My new home page is up now!

I have integrated a CMS to my home page and is now up on http://www.ninethsense.com/. Now I can add contents easily. For my old website, I was manually making corrections on the HTML part.
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

How to remove/drop/delete a FOREIGN KEY in SQL Server

ALTER TABLE tableName
DROP foreignKeyName
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

System.IO.Compression.GZipStream

Compress files using GZipStream in dotnet.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.IO.Compression;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
[...]

Leave a Comment

winowl32.dll - Backdoor.Trojan

I was messed up with this nasty piece of dll. I tried to remove it with NAV but it simply detects and not cleans.. not even able to quarantine. I was not able to delete it maually also.
Now I fixed it (hope) by loging in to Administrator directly to the safemode command prompt. (I couldnt [...]

Leave a Comment

Microsoft Silverlight

Microsoft Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of media experiences and rich interactive applications (RIAs) for the Web.

http://www.microsoft.com/silverlight/
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

ASP.NET: How to detect .NET version from Browser - using User-Agent string.

This code will help you to fetch the .NET versions installed on the client browser.
/* Author: Praveen */
< %@ Page Language="c#" ContentType="text/html" %>
< %
string useragent = Request.ServerVariables["HTTP_USER_AGENT"];
System.Text.RegularExpressions.Regex r = new System.Text.RegularExpressions.Regex(”.NET CLR [0-9.]*”);
bool flag = false;
foreach (Match m in r.Matches(useragent))
{
Response.Write(”
” + m.Value.Replace(”CLR”, “Framework”));
[...]

Leave a Comment

I just received my MVP Academy Participation Certificate

Months before, I joined for a cource (2310) Developing Microsoft ASP.NET Web Applications Using Visual Studio 2005. I just got the “Certificate of Participation” from Microsoft.
Great to see
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

Developers! Mind this.

* Inside every large program are a bunch of little programs trying to escape … Thus, instead of writing one large program, sometimes it’s better to have smaller ones based on a specific function.
* Use good naming conventions and comment every major routine. Write this so that anyone can maintain it in the future. [...]

Leave a Comment

My Microsoft MVP Profile

Here is the link to my MVP profile at Microsoft Website. https://mvp.support.microsoft.com/profile/Praveen
VN:F [1.1.6_502]Rating: 0.0/5 (0 votes cast)

Leave a Comment

My new Article on CodeProject - Menu UserControl

My new article Navigation Menu for Windows forms (Outlook bar style) is now available on The Code Project.
This article is about the creation of a user control which have the style like Outlook Express bar or DHTML Menu.

Link: http://www.codeproject.com/cs/miscctrl/NavigationMenu.asp
VN:F [1.1.6_502]Rating: 1.0/5 (1 vote cast)

Leave a Comment