Friday, May 30, 2008

None of the selected features can be installed or upgraded. Setup cannot proceed since no

While installing Microsoft SQl 2005 you may face this message...

TITLE: Microsoft SQL Server Setup------------------------------
None of the selected features can be installed or upgraded. Setup cannot proceed since no effective change is being made to the machine. To continue, click Back and then select features to install. To exit SQL Server Setup, click Cancel.
For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&ProdVer=9.00.1399.06&EvtSrc=setup.rll&EvtID=SQLSetup90&EvtType=28108
------------------------------BUTTONS: OK------------------------------
To solve this problem:
To get around this issue, run the setup.exe from the SQL installation source from your Run command with the parameter SKUUPGRADE=1 or UPGRADE=1.
For more ref
Hope this helps you people!

Saturday, May 24, 2008

Microsoft Research Worldwide Telescope

Microsoft Research Worldwide Telescope
Microsoft’s research and launch of Worldwide Telescope, Microsoft is tiring to do something similar to Google's Earth, Moon, etc. ?
Go check out Telescope
Download
Microsoft Research Worldwide Telescope make your computer to function as a virtual telescope.

Sunday, May 18, 2008

Radial Racing Programming support

Recently I have launched the Radial Racing Programming support to support all developers across the global by submiting reuseable codes and tools

My first launch was in CodePlex.com TabControl WebPart

Thursday, May 15, 2008

Deploying Office Solutions Using Windows Installer

Deploying Office Solutions Using Windows Installer

How to deploy a Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office system (also known as Visual Studio 2005 Tools for Office Second Edition, or VSTO 2005 SE) solution using a Visual Studio 2005 Setup project to create a Windows Installer package.

More on that...

This article demonstrates how to use the installer

learn how to

Friday, May 09, 2008

Wonder Microsoft Web Developer Kid



Wonder Microsoft Web Developer Kid

Retrieve File Security Information using C#

Retrieve File Security Information using C#

Verify if file exists in the directory using the System.IO namespace. And retrieving the security information and other details. This as been demonstrated using the Windows forms application.




if (File.Exists(openFileDialog1.FileName))
{
//MessageBox.Show("File exists!");
lbl_existstatus.ForeColor = System.Drawing.Color.SeaGreen;
lbl_existstatus.Text = "File Exist the directory";
}
else
{
lbl_existstatus.ForeColor = System.Drawing.Color.Red;
lbl_existstatus.Text = "File Missing in the directory";
}

Query the secuirty inforamtion of the file using the System.Management.

using (ManagementObject o = new ManagementObject(@"Win32_LogicalFileSecuritySetting.Path='" + fileName + "'"))

ASP.NET MVC - Sport Facility Booking system

  The project relies on some external service providers. Thus accessing them via their API requires authentication. An API Key need to be su...