Play Guitar, Record and Share it to others

Do you like playing guitar like famous musicians?


Do you want others to listen the guitar that you played and recorded?


Below is an link that lets you play, record and listen the recorded guitar and even you can share the same on your favorite social networking sites.

iPad : Online Simulator




When you are developing any mobile application, you need to have the device with you for testing during the development process.

Below is the list for useful websites that provide online simulator for iPad.

Please provide more links as comment, if you have any other than listed in this post.


By
image credit: http://www.cultofmac.com

iPhone : Simulator Online



When you are developing any mobile application, you need to have the device with you for testing during the development process.

Below is the list for useful websites that provide online simulator for iPhone.


Please provide more links as comment, if you have any other than listed in this post.


By
image credit: http://www.dirjournal.com

ASP.NET - Unable to start debugging on the web server. The IIS worker process for the launched URL is not currently running.

Finished your coding and going to run your project.
As soon as you press F5 to debug the project, you get an error:

Unable to start debugging on the web server. The IIS worker process for the launched URL is not currently running.

and it wont allow you to debug your application.

Here is the solution to resolve the problem
  • Open your Internet Information Server

SQL SERVER - Login Failed for "NT-AUTHORITY\IUSER"

When your connection string has the words "Integrated Security=SSPI" and you try to access the database, you will get this error

Login Failed for "NT-AUTHORITY\IUSER".

Below are the steps to resolve the error:
  • Open your Microsoft SQL Server Management Studio
  • Connect to your SQL Server instance

Grand scale grooming by Gillette

Every company brings innovative ideas of advertise their products.

Gillette has created an advertise with Tennis Start Roger Federer as its brand ambassador.

The company has used a ground area measuring 2,800 square meters, 3000 Liters of paint and 1,000 liters of foam for and advertisement of its product "Gillette Fusion ProGlide".

A must watch video: "High precision grooming on a grand scale. Gillette created and then shaved a giant image of tennis ace Roger Federer in a field in London." (YouTube)

Click here to watch the video.

SQL Server : How to produce zero without using any numbers using SQL query

Have you ever thought producing '0' ZERO with using any digit or number in your SQL query.

I came across a good trick to produce ZERO (0) without using any number in T SQL statement by Madhivanan.

If you have any idea about the same....lets know through your comments OR click here to view the original link.

If you find the above link useful, let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.
Report Broken Link

Error ID 72e9 Error in resolving user ‘ABC’: System.DirectoryServices.DirectoryServicesCOMException (0x8007202B): A referral was returned from the server...

When you have used PeoplePicker conrol in SharePoint 2010,  you might get below error instead of the user from Active Directory Services:
Error ID 72e9 Error in resolving user ‘Alpesh’ : System.DirectoryServices.DirectoryServicesCOMException (0x8007202B): A referral was returned from the server...
I found a solution provided at Joel Jeffery's blog with following details
We had a weird problem at one of my customers the other day. They’d built a SharePoint 2010 farm with one web application and three site collections.
In two of the site collections, the PeoplePicker control allowed the users to select the correct folks from their Active Directory. However, for one site collection, only users that already exist in the User Information List

How to run a batch file from C# in desktop application

To execute the batch file in c#, here is the code through which you can easily get the output from batch file.


// Get the full file path
string strFilePath = filePath;(full path for ex: c:\\batchfile\\somefile.bat)

// Create the ProcessInfo object

The type or namespace name 'Publishing' does not exist in the namespace 'Microsoft.SharePoint' (are you missing an assembly reference)

I was working to publish assembly reference in your SharePoint 2010 and faced the error message :
The type or namespace name 'Publishing' does not exist in the namespace 'Microsoft.SharePoint' (are you missing an assembly reference)

I did some Google and found this good solution link from Microsoft TechNet site.