Categories
7.0 7.5 7.8 8.0 C#.NET Microsoft Nokia SDK 7.1 SDK 7.8 VB.NET Visual Studio Windows Phone

Microsoft Windows Phone – “0x89740006”

0x89740006

The above error message appears when you try to deploy a Windows Phone Project to a physical Windows Phone device.

Cause:
Lock Screen is active on phone

Solution:
Unlock the screen on your Windows Phone-based device

Did my solution solve your problem? Leave a reply.

Categories
C#.NET Microsoft Visual Studio

Visual Studio C#.Net – “A get or set accessor expected”

A get or set accessor expected

in Italian:

È prevista una funzione di accesso get o set

Solution:
You miss the parentheses on the method declaration

private void SampleMethod()
{

}

Did my solution solve your problem? Leave a reply.