Monthly Archives: January 2014

Top menu missing from Task Manager

When you try to find “Task Manager Top Tabs Missing” from google then most like you will get the link http://answers.microsoft.com/en-us/windows/forum/windows_xp-windows_programs/task-manager-top-tabs-missing/9a76add0-8ae8-4cdf-bbcc-650dd68fc383. The answer is: To regain the Tabs and information, double-click on the outside border of the window Now the … Continue reading

Posted in Operating System | Tagged , | Leave a comment

Visual Sutdio 2013 Update 1 download

Visual Sutdio 2013 Update 1 is here, So far one machine updated and survived. http://www.microsoft.com/en-us/download/details.aspx?id=41650

Posted in .Net | Tagged | Leave a comment

How to get rid of Chrome’s web history icons in new tab

You can follow the steps as in http://computertutorflorida.com/2013/10/how-to-get-rid-of-chromes-web-history-icons/ 1. Open Google Chrome. 2. In the address bar, type:  chrome:flags and hit Enter on your keyboard. 3. You’ll see a warning, and it’s one that you should pay attention to.  Don’t hang … Continue reading

Posted in Community, Computers and Internet | Tagged | Leave a comment

Layered Architecture Solution Guidance

I got this from a friend. Layered Architecture Solution Guidance (LASG) is a software factory that offers a set of tools and guidance aimed at simplifying and accelerating the development of layered applications. It extends Visual Studio to provide a … Continue reading

Posted in .Net | Tagged | Leave a comment

Free book for C# beginner

This is a good book for the beginners what want to learn C# http://www.robmiles.com/journal/2014/1/7/new-c-yellow-book-available-and-on-kindle. I do not see the sample code to download. You will probably need to copy and paste from the ebook.

Posted in .Net | Tagged | Leave a comment

Using ObjectDataSource with ASP.NET ListView for Entity Framework 6

This article consists of three subsection: ·         Create an ADO.NET Entity Data Model ·         Add a model class for Object Data Source binding ·         Add and configure Object Data Source and ListView For more information http://blogs.msdn.com/b/mvpawardprogram/archive/2014/01/06/using-objectdatasource-with-asp-net-listview-for-entity-framework-6.aspx

Posted in .Net | Tagged | Leave a comment

Unable to cast object of type ‘System.Data.Entity.Infrastructure.DbQuery`1[ConsoleApplication1.Product]‘ to type ‘System.Data.Objects.ObjectQuery’.

I found the workgroup for this. Thanks to Jaliya Udagedarahttp://jaliyaudagedara.blogspot.com/ . Change string str = (((System.Data.Objects.ObjectQuery)result).ToTraceString()); to string str = (((DbQuery<Product>)result).ToString()); The complete code is here.        using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Entity; using System.Data.Entity.Infrastructure; … Continue reading

Posted in .Net | Tagged | 1 Comment

Unable to cast object of type ‘System.Data.Entity.Infrastructure.DbQuery`1[ConsoleApplication1.Product]’ to type ‘System.Data.Objects.ObjectQuery’.

Let me post problem this time instead of solution. Look at the code I have and examples in the Internet. This code should not get an error:       static void Main(string[] args)     {       //northwindEntities context = new … Continue reading

Posted in .Net | Tagged | 1 Comment

Automating Migration from Windows XP to Windows 8.1

After watching the video Automating Migration from Windows XP to Windows 8.1 (http://channel9.msdn.com/Series/Windows-XP-to-Windows-8-1-Migration/Mod1) then I think there is a big gap in it. The hardware did not mention throughout the whole video. Should we ask ourselves how many computer hardware … Continue reading

Posted in Community, Computers and Internet, Operating System | Tagged , | Leave a comment

How to set the IE8 mode in IE11

We use to F12 in IE9 or IE10 to set the IE to IE8 mode. Unfortunately IE11 F12 is totally an “alien” interface.   You need to enable the Compatibility View. For example, I have a troux application hitting the … Continue reading

Posted in .Net, Community, Computers and Internet | Tagged , | Leave a comment