gururao-tech.blogspot.com
Guru's Tech Blog: August 2010
http://gururao-tech.blogspot.com/2010_08_01_archive.html
Thursday, August 19, 2010. How to view Hidden files in Windows XP and Windows 2003. To enable the viewing of Hidden files in Windows XP and Windows 2003 follow these steps:. 1 Close all programs so that you are at your desktop. 2 Double-click on the My Computer icon. 3 Select the Tools menu and click Folder Options. 4 After the new window appears select the View tab. 5 Put a checkmark in the checkbox labeled Display the contents of system folders. Hidden files and folders. Subscribe to: Posts (Atom).
gururao-tech.blogspot.com
Guru's Tech Blog: Resolving Intel PROSet/Wireless Network Connection Error
http://gururao-tech.blogspot.com/2011/01/resolving-intel-prosetwireless-network.html
Thursday, January 27, 2011. Resolving Intel PROSet/Wireless Network Connection Error. Does Intel PROSet/Wireless Network Connection software work with DEP? Intel PROSet/Wireless Network Connection Software version 10.1.x does not support DEP. DEP is supported in Intel PROSet/Wireless Network Connection Software version 10.5 and beyond. A detailed description of DEP is available at Microsoft* Help and Support article 875352*. 1 Right click on “My Computer” and select “properties”. 5 Select “Turn on ...
guru-dotnet.blogspot.com
Guru's .NET Blog: July 2011
http://guru-dotnet.blogspot.com/2011_07_01_archive.html
Guru's .NET Blog. Wednesday, July 13, 2011. SQL: Deleting duplicate records from table. Here is one way to delete duplicate records from a table:. Consider we have some duplicate records in TempTable which has a unique identifier column called "RowId". Where RowId not in. Group by column1, column2,. Subscribe to: Posts (Atom). View my complete profile. SQL: Deleting duplicate records from table. Simple template. Template images by luoman.
guru-dotnet.blogspot.com
Guru's .NET Blog: July 2015
http://guru-dotnet.blogspot.com/2015_07_01_archive.html
Guru's .NET Blog. Tuesday, July 21, 2015. Features included with free Visual Studio Online. Team projects and private code repos. Work item tracking for all users. 60 minutes/month of build. 20K virtual user minutes/month of load testing. Application monitoring and analytics. Some new features in Visual Studio 2015:. Visual Studio 2015 RC Downloads. Visual Studio 2015 includes Xamarin integrated for mobile development. Cordovo tooling in Visual Studio 2015. Don't have to build to run a web app.
guru-dotnet.blogspot.com
Guru's .NET Blog: August 2011
http://guru-dotnet.blogspot.com/2011_08_01_archive.html
Guru's .NET Blog. Monday, August 8, 2011. Entity Framework Error: Resource not found for segment 'Property'. I was getting "Resource not found for segment 'Property'" error with the below code. I am loading some data from the database using .Net Entity Framework. Private void LoadItem(int specId). Var query = DataContext.Items.Where( x = x.SpecId = specID );. Thisitems = dsq.EndExecute( ar ).SingleOrDefault();. Var query = DataContext.Items.Where( x = x.SpecId = specID );. Subscribe to: Posts (Atom).
guru-dotnet.blogspot.com
Guru's .NET Blog: Visual Studio Online
http://guru-dotnet.blogspot.com/2015/07/visual-studio-online.html
Guru's .NET Blog. Tuesday, July 21, 2015. Features included with free Visual Studio Online. Team projects and private code repos. Work item tracking for all users. 60 minutes/month of build. 20K virtual user minutes/month of load testing. Application monitoring and analytics. Subscribe to: Post Comments (Atom). View my complete profile. Simple template. Template images by luoman.
gururao-tech.blogspot.com
Guru's Tech Blog: How to add a dropdown (list) box in Google Spreadsheet
http://gururao-tech.blogspot.com/2011/06/how-to-add-dropdown-list-box-in-google.html
Tuesday, June 28, 2011. How to add a dropdown (list) box in Google Spreadsheet. I wanted a dropdown box in my google spreadsheet document and soon I realized dropdown control was not supported in google spreadsheet. But, I found a workaround solution to add the dropdown in google spreadsheet. Here are the steps:. Now in the target worksheet, I have a month column and wanted a feature to be able to pick a month from the dropdown. This is how I got my month column in the target worksheet working:. Now go t...
guru-dotnet.blogspot.com
Guru's .NET Blog: Visual Studio 2015
http://guru-dotnet.blogspot.com/2015/07/visual-studio-2015.html
Guru's .NET Blog. Tuesday, July 21, 2015. Some new features in Visual Studio 2015:. Visual Studio 2015 RC Downloads. Visual Studio 2015 includes Xamarin integrated for mobile development. Cordovo tooling in Visual Studio 2015. Don't have to build to run a web app. All source code are in Git hub (example Asp.Net MVC source code). If we get source code, source reference will override nuget package. Dev and Test in Cloud - use virtual machines. Performance step (no more debug trace lines).
guru-dotnet.blogspot.com
Guru's .NET Blog: June 2014
http://guru-dotnet.blogspot.com/2014_06_01_archive.html
Guru's .NET Blog. Monday, June 2, 2014. Cannot drop database because it is currently in use error. We might get following error when we try to drop a database in SQL Server:. Cannot drop database 'MyDatabaseName' because it is currently in user". To resolve this error, alter the database first before deleting the database like below. ALTER DATABASE [MyDatabaseName] set single user with rollback immediate. Subscribe to: Posts (Atom). View my complete profile. Simple template. Template images by luoman.
guru-dotnet.blogspot.com
Guru's .NET Blog: June 2011
http://guru-dotnet.blogspot.com/2011_06_01_archive.html
Guru's .NET Blog. Tuesday, June 7, 2011. SQL Error: None of the result expressions in a CASE specification can be NULL. I got this error when my CASE statement in SQL returned NULL and did not have any ELSE section in the CASE statement: "None of the result expressions in a CASE specification can be NULL". The CASE statement which resulted in error was like this:. CASE WHEN StudentId = 0 THEN null END. I wanted to return NULL when StudentId = 0; else return the StudentId. Subscribe to: Posts (Atom).