Categories
Microsoft Tips & Tricks Windows 7 Windows 8 / 8.1

Tips & Tricks – Restore Windows Start button and Start menu on Windows 8

Opposite the new, the man basically tries to adapt to change, but it often happens that the diversity creates frustration and one tries in every way to come back.

This concept is reflected in the large number of users who use the new Microsoft operating system Windows 8.

After years accustomed to having at the lower left corner the famous Start button, after you upgrade to Windows 8 you will find more and more of its lack.

As young and developer, my advice is to adapt, gradually you get used to, but if you cannot help I can only suggest a few ways to restore Start button and Start menu on Windows 8, and much more…

Below I list some of the tools at your disposal, the order does not establish any preference because I do not use them.

FREE

Win8 StartButton

Classic Shell

Pokki

PAY (free 30-day trial)

StartIsBack

Start8

Do you think that my Tip & Trick is useful? Leave a reply.

Categories
7.5 C#.NET Microsoft VB.NET Visual Studio Windows Phone

‘DataContractJsonSerializer’ does not exist in the namespace ‘System.Runtime.Serialization.Json’

The type or namespace name ‘DataContractJsonSerializer’ does not exist in the namespace ‘System.Runtime.Serialization.Json’ (are you missing an assembly reference?)

in Italian:

Il tipo o il nome dello spazio dei nomi ‘DataContractJsonSerializer’ non esiste nello spazio dei nomi ‘System.Runtime.Serialization.Json’; probabilmente manca un riferimento a un assembly

Solution:

Add the following References to your project:

System.Runtime.Serialization
System.ServiceModel.Web

In Solution Explorer, right-click on the project node and click Add Reference to select the dll files.
Remember to add using or Imports lines inside your file.

Did my solution solve your problem? Leave a reply.